diff --git a/.github/ISSUE_TEMPLATE/ar_bug_report.md b/.github/ISSUE_TEMPLATE/ar_bug_report.md index 0d4aee9397..93b6e70b03 100644 --- a/.github/ISSUE_TEMPLATE/ar_bug_report.md +++ b/.github/ISSUE_TEMPLATE/ar_bug_report.md @@ -1,5 +1,5 @@ --- -name: ar_bug_report.md +name: Automated Review bug report about: Create a bug for a an issue found in the Automated Review title: 'AR Bug Report' labels: 'needs-triage,kind/bug,kind/automation' diff --git a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main.py index b4de39ae98..d79e144ae0 100644 --- a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main.py @@ -13,6 +13,8 @@ from ly_test_tools.o3de.editor_test import EditorSharedTest, EditorTestSuite @pytest.mark.parametrize("launcher_platform", ['windows_editor']) class TestAutomation(EditorTestSuite): + enable_prefab_system = False + @pytest.mark.test_case_id("C36525657") class AtomEditorComponents_BloomAdded(EditorSharedTest): from Atom.tests import hydra_AtomEditorComponents_BloomAdded as test_module diff --git a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main_GPU.py b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main_GPU.py index f0e92c7e3e..6a220d1bd8 100644 --- a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main_GPU.py +++ b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main_GPU.py @@ -104,6 +104,7 @@ class TestAllComponentsIndepthTests(object): halt_on_unexpected=True, cfg_args=[level], null_renderer=False, + enable_prefab_system=False, ) similarity_threshold = 0.99 @@ -158,6 +159,7 @@ class TestAllComponentsIndepthTests(object): halt_on_unexpected=True, cfg_args=[level], null_renderer=False, + enable_prefab_system=False, ) similarity_threshold = 0.99 @@ -205,6 +207,7 @@ class TestPerformanceBenchmarkSuite(object): halt_on_unexpected=True, cfg_args=[level], null_renderer=False, + enable_prefab_system=False, ) aggregator = BenchmarkDataAggregator(workspace, logger, 'periodic') @@ -242,5 +245,6 @@ class TestMaterialEditor(object): halt_on_unexpected=False, null_renderer=False, cfg_args=[cfg_args], - log_file_name="MaterialEditor.log" + log_file_name="MaterialEditor.log", + enable_prefab_system=False, ) diff --git a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main_GPU_Optimized.py b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main_GPU_Optimized.py index 568768e12e..7f97c132bb 100644 --- a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main_GPU_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Main_GPU_Optimized.py @@ -23,6 +23,8 @@ class TestAutomation(EditorTestSuite): # Remove -autotest_mode from global_extra_cmdline_args since we need rendering for these tests. global_extra_cmdline_args = ["-BatchMode"] # Default is ["-BatchMode", "-autotest_mode"] + enable_prefab_system = False + @pytest.mark.test_case_id("C34603773") class AtomGPU_BasicLevelSetup_SetsUpLevel(EditorSharedTest): use_null_renderer = False # Default is True diff --git a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Sandbox.py index 9ceb3c951f..292bb9c19c 100644 --- a/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Sandbox.py +++ b/AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Sandbox.py @@ -85,6 +85,7 @@ class TestAtomEditorComponentsMain(object): halt_on_unexpected=True, null_renderer=True, cfg_args=cfg_args, + enable_prefab_system=False, ) @@ -155,5 +156,6 @@ class TestMaterialEditorBasicTests(object): halt_on_unexpected=True, null_renderer=True, log_file_name="MaterialEditor.log", + enable_prefab_system=False, ) diff --git a/AutomatedTesting/Gem/PythonTests/Blast/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/Blast/TestSuite_Main.py index dbc4a1a456..a047d09d29 100644 --- a/AutomatedTesting/Gem/PythonTests/Blast/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/TestSuite_Main.py @@ -23,28 +23,28 @@ from base import TestAutomationBase class TestAutomation(TestAutomationBase): def test_ActorSplitsAfterCollision(self, request, workspace, editor, launcher_platform): from .tests import Blast_ActorSplitsAfterCollision as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ActorSplitsAfterRadialDamage(self, request, workspace, editor, launcher_platform): from .tests import Blast_ActorSplitsAfterRadialDamage as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ActorSplitsAfterCapsuleDamage(self, request, workspace, editor, launcher_platform): from .tests import Blast_ActorSplitsAfterCapsuleDamage as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ActorSplitsAfterImpactSpreadDamage(self, request, workspace, editor, launcher_platform): from .tests import Blast_ActorSplitsAfterImpactSpreadDamage as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ActorSplitsAfterShearDamage(self, request, workspace, editor, launcher_platform): from .tests import Blast_ActorSplitsAfterShearDamage as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ActorSplitsAfterTriangleDamage(self, request, workspace, editor, launcher_platform): from .tests import Blast_ActorSplitsAfterTriangleDamage as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ActorSplitsAfterStressDamage(self, request, workspace, editor, launcher_platform): from .tests import Blast_ActorSplitsAfterStressDamage as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentUpdateListProperty_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentUpdateListProperty_test.py index ed677ea185..a8ca721cca 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentUpdateListProperty_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentUpdateListProperty_test.py @@ -51,5 +51,6 @@ class TestComponentAssetListAutomation(object): editor, "ComponentUpdateListProperty_test_case.py", expected_lines=expected_lines, - cfg_args=[level] + cfg_args=[level], + enable_prefab_system=False, ) diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/README.txt b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/README.txt index 90afee39bc..642d7279a4 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/README.txt +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/README.txt @@ -28,7 +28,7 @@ Assuming CMake is already setup on your operating system, below are some sample cd /path/to/od3e/ mkdir windows_vs2019 cd windows_vs2019 - cmake .. -G "Visual Studio 16 2019" -A x64 -T host=x64 -DLY_3RDPARTY_PATH="%3RDPARTYPATH%" -DLY_PROJECTS=AutomatedTesting + cmake .. -G "Visual Studio 16 2019" -DLY_PROJECTS=AutomatedTesting To manually install the project in development mode using your own installed Python interpreter: cd /path/to/od3e/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/hydra_test_utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/hydra_test_utils.py index 510d1b1149..ee36a640f0 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/hydra_test_utils.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/hydra_test_utils.py @@ -29,7 +29,7 @@ def teardown_editor(editor): def launch_and_validate_results(request, test_directory, editor, editor_script, expected_lines, unexpected_lines=[], halt_on_unexpected=False, run_python="--runpythontest", auto_test_mode=True, null_renderer=True, cfg_args=[], - timeout=300, log_file_name="Editor.log"): + timeout=300, log_file_name="Editor.log", enable_prefab_system=True): """ Runs the Editor with the specified script, and monitors for expected log lines. :param request: Special fixture providing information of the requesting test function. @@ -45,17 +45,22 @@ def launch_and_validate_results(request, test_directory, editor, editor_script, :param cfg_args: Additional arguments for CFG, such as LevelName. :param timeout: Length of time for test to run. Default is 60. :param log_file_name: Name of the log file created by the editor. Defaults to 'Editor.log' + :param enable_prefab_system: Flag to determine whether to use new prefab system or use deprecated slice system. Defaults to True. """ test_case = os.path.join(test_directory, editor_script) request.addfinalizer(lambda: teardown_editor(editor)) logger.debug("Running automated test: {}".format(editor_script)) editor.args.extend(["--skipWelcomeScreenDialog", "--regset=/Amazon/Settings/EnableSourceControl=false", - "--regset=/Amazon/Preferences/EnablePrefabSystem=false", run_python, test_case, + run_python, test_case, f"--pythontestcase={request.node.name}", "--runpythonargs", " ".join(cfg_args)]) if auto_test_mode: editor.args.extend(["--autotest_mode"]) if null_renderer: editor.args.extend(["-rhi=Null"]) + if enable_prefab_system: + editor.args.extend(["--regset=/Amazon/Preferences/EnablePrefabSystem=true"]) + else: + editor.args.extend(["--regset=/Amazon/Preferences/EnablePrefabSystem=false"]) with editor.start(): diff --git a/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Main.py index df1eb62943..450c760786 100644 --- a/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Main.py @@ -23,7 +23,6 @@ from base import TestAutomationBase class TestAutomation(TestAutomationBase): def _run_prefab_test(self, request, workspace, editor, test_module, batch_mode=True, autotest_mode=True): self._run_test(request, workspace, editor, test_module, - extra_cmdline_args=["--regset=/Amazon/Preferences/EnablePrefabSystem=true"], batch_mode=batch_mode, autotest_mode=autotest_mode) diff --git a/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Sandbox.py index 52ac19b26e..8f50d4d36d 100644 --- a/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Sandbox.py +++ b/AutomatedTesting/Gem/PythonTests/Multiplayer/TestSuite_Sandbox.py @@ -24,7 +24,6 @@ from base import TestAutomationBase class TestAutomation(TestAutomationBase): def _run_prefab_test(self, request, workspace, editor, test_module, batch_mode=True, autotest_mode=True): self._run_test(request, workspace, editor, test_module, - extra_cmdline_args=["--regset=/Amazon/Preferences/EnablePrefabSystem=true"], batch_mode=batch_mode, autotest_mode=autotest_mode) diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Main.py index 49a776a48c..f35f098b0f 100644 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Main.py @@ -25,8 +25,8 @@ class TestAutomation(TestAutomationBase): def test_NvCloth_AddClothSimulationToMesh(self, request, workspace, editor, launcher_platform): from .tests import NvCloth_AddClothSimulationToMesh as test_module - self._run_test(request, workspace, editor, test_module, use_null_renderer = self.use_null_renderer) + self._run_test(request, workspace, editor, test_module, use_null_renderer = self.use_null_renderer, enable_prefab_system=False) def test_NvCloth_AddClothSimulationToActor(self, request, workspace, editor, launcher_platform): from .tests import NvCloth_AddClothSimulationToActor as test_module - self._run_test(request, workspace, editor, test_module, use_null_renderer = self.use_null_renderer) + self._run_test(request, workspace, editor, test_module, use_null_renderer = self.use_null_renderer, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_InDevelopment.py b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_InDevelopment.py index 9e3a9cb4ff..09d8f5635f 100755 --- a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_InDevelopment.py +++ b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_InDevelopment.py @@ -26,158 +26,158 @@ class TestAutomation(TestAutomationBase): r"AutomatedTesting\Levels\Physics\Material_LibraryCrudOperationsReflectOnRagdollBones") def test_Material_LibraryCrudOperationsReflectOnRagdollBones(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryCrudOperationsReflectOnRagdollBones as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Material_RagdollBones(self, request, workspace, editor, launcher_platform): from .tests.material import Material_RagdollBones as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @fm.file_revert("c15308221_material_componentsinsyncwithlibrary.physmaterial", r"AutomatedTesting\Levels\Physics\Material_ComponentsInSyncWithLibrary") def test_Material_ComponentsInSyncWithLibrary(self, request, workspace, editor, launcher_platform): from .tests.material import Material_ComponentsInSyncWithLibrary as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # BUG: LY-107723") def test_ScriptCanvas_SetKinematicTargetTransform(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_SetKinematicTargetTransform as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # Failing, PhysXTerrain @fm.file_revert("c4925579_material_addmodifydeleteonterrain.physmaterial", r"AutomatedTesting\Levels\Physics\Material_LibraryCrudOperationsReflectOnTerrain") def test_Material_LibraryCrudOperationsReflectOnTerrain(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryCrudOperationsReflectOnTerrain as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # Failing, PhysXTerrain def test_Terrain_TerrainTexturePainterWorks(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_TerrainTexturePainterWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # Failing, PhysXTerrain def test_Material_CanBeAssignedToTerrain(self, request, workspace, editor, launcher_platform): from .tests.material import Material_CanBeAssignedToTerrain as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # Failing, PhysXTerrain def test_Material_DefaultLibraryConsistentOnAllFeatures(self, request, workspace, editor, launcher_platform): from .tests.material import Material_DefaultLibraryConsistentOnAllFeatures as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # Failing, PhysXTerrain @fm.file_revert("all_ones_1.physmaterial", r"AutomatedTesting\Levels\Physics\Material_DefaultMaterialLibraryChangesWork") @fm.file_override("default.physxconfiguration", "Material_DefaultMaterialLibraryChangesWork.physxconfiguration", "AutomatedTesting") def test_Material_DefaultMaterialLibraryChangesWork(self, request, workspace, editor, launcher_platform): from .tests.material import Material_DefaultMaterialLibraryChangesWork as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Collider_SameCollisionGroupSameLayerCollide(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_SameCollisionGroupSameLayerCollide as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Ragdoll_OldRagdollSerializationNoErrors(self, request, workspace, editor, launcher_platform): from .tests.ragdoll import Ragdoll_OldRagdollSerializationNoErrors as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @fm.file_override("default.physxconfiguration", "ScriptCanvas_OverlapNode.physxconfiguration") def test_ScriptCanvas_OverlapNode(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_OverlapNode as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Material_StaticFriction(self, request, workspace, editor, launcher_platform): from .tests.material import Material_StaticFriction as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @fm.file_revert("c4888315_material_addmodifydeleteoncollider.physmaterial", r"AutomatedTesting\Levels\Physics\Material_LibraryCrudOperationsReflectOnCollider") def test_Material_LibraryCrudOperationsReflectOnCollider(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryCrudOperationsReflectOnCollider as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @fm.file_revert("c15563573_material_addmodifydeleteoncharactercontroller.physmaterial", r"AutomatedTesting\Levels\Physics\Material_LibraryCrudOperationsReflectOnCharacterController") def test_Material_LibraryCrudOperationsReflectOnCharacterController(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryCrudOperationsReflectOnCharacterController as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @fm.file_revert("c4888315_material_addmodifydeleteoncollider.physmaterial", r"AutomatedTesting\Levels\Physics\Material_LibraryCrudOperationsReflectOnCollider") def test_Material_LibraryCrudOperationsReflectOnCollider(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryCrudOperationsReflectOnCollider as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @fm.file_revert("c15563573_material_addmodifydeleteoncharactercontroller.physmaterial", r"AutomatedTesting\Levels\Physics\Material_LibraryCrudOperationsReflectOnCharacterController") def test_Material_LibraryCrudOperationsReflectOnCharacterController(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryCrudOperationsReflectOnCharacterController as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @fm.file_revert("c4044455_material_librarychangesinstantly.physmaterial", r"AutomatedTesting\Levels\Physics\C4044455_Material_LibraryChangesInstantly") def test_Material_LibraryChangesReflectInstantly(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryChangesReflectInstantly as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @fm.file_revert("Material_LibraryUpdatedAcrossLevels.physmaterial", r"AutomatedTesting\Levels\Physics\Material_LibraryUpdatedAcrossLevels") def test_Material_LibraryUpdatedAcrossLevels(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryUpdatedAcrossLevels as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_RigidBody_LinearDampingAffectsMotion(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_LinearDampingAffectsMotion as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Terrain_CollisionAgainstRigidBody(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_CollisionAgainstRigidBody as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ShapeCollider_CylinderShapeCollides(self, request, workspace, editor, launcher_platform): from .tests.collider import ShapeCollider_CylinderShapeCollides as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Physics_WorldBodyBusWorksOnEditorComponents(self, request, workspace, editor, launcher_platform): from .tests import Physics_WorldBodyBusWorksOnEditorComponents as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Collider_PxMeshErrorIfNoMesh(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_PxMeshErrorIfNoMesh as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ForceRegion_ImpulsesBoxShapedRigidBody(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ImpulsesBoxShapedRigidBody as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Terrain_SpawnSecondTerrainComponentWarning(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_SpawnSecondTerrainComponentWarning as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Terrain_AddPhysTerrainComponent(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_AddPhysTerrainComponent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Terrain_CanAddMultipleTerrainComponents(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_CanAddMultipleTerrainComponents as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Terrain_MultipleTerrainComponentsWarning(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_MultipleTerrainComponentsWarning as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Terrain_MultipleTerrainComponentsWarning(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_MultipleTerrainComponentsWarning as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ForceRegion_HighValuesDirectionAxesWorkWithNoError(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_HighValuesDirectionAxesWorkWithNoError as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Terrain_MultipleResolutionsValid(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_MultipleResolutionsValid as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ForceRegion_SmallMagnitudeDeviationOnLargeForces(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_SmallMagnitudeDeviationOnLargeForces as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Main.py index fb2744deda..07ae5f6ca0 100644 --- a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Main.py @@ -30,33 +30,33 @@ class TestAutomation(TestAutomationBase): def test_RigidBody_EnablingGravityWorksUsingNotificationsPoC(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_EnablingGravityWorksUsingNotificationsPoC as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_LocalSpaceForceOnRigidBodies(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_LocalSpaceForceOnRigidBodies as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Material_DynamicFriction.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Material_DynamicFriction(self, request, workspace, editor, launcher_platform): from .tests.material import Material_DynamicFriction as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Collider_SameCollisionGroupDiffLayersCollide(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_SameCollisionGroupDiffLayersCollide as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_CharacterController_SwitchLevels(self, request, workspace, editor, launcher_platform): from .tests.character_controller import CharacterController_SwitchLevels as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Ragdoll_AddPhysxRagdollComponentWorks(self, request, workspace, editor, launcher_platform): from .tests.ragdoll import Ragdoll_AddPhysxRagdollComponentWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ScriptCanvas_MultipleRaycastNode(self, request, workspace, editor, launcher_platform): @@ -64,43 +64,43 @@ class TestAutomation(TestAutomationBase): # Fixme: This test previously relied on unexpected lines log reading with is now not supported. # Now the log reading must be done inside the test, preferably with the Tracer() utility # unexpected_lines = ["Assert"] + test_module.Lines.unexpected - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Collider_DiffCollisionGroupDiffCollidingLayersNotCollide.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Collider_DiffCollisionGroupDiffCollidingLayersNotCollide(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_DiffCollisionGroupDiffCollidingLayersNotCollide as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Joints_HingeLeadFollowerCollide(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_HingeLeadFollowerCollide as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Collider_PxMeshConvexMeshCollides(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_PxMeshConvexMeshCollides as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ShapeCollider_CylinderShapeCollides(self, request, workspace, editor, launcher_platform): from .tests.shape_collider import ShapeCollider_CylinderShapeCollides as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_C15425929_Undo_Redo(self, request, workspace, editor, launcher_platform): from .tests import Physics_UndoRedoWorksOnEntityWithPhysComponents as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.GROUP_tick @pytest.mark.xfail(reason="Test still under development.") def test_Tick_InterpolatedRigidBodyMotionIsSmooth(self, request, workspace, editor, launcher_platform): from .tests.tick import Tick_InterpolatedRigidBodyMotionIsSmooth as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.GROUP_tick @pytest.mark.xfail(reason="Test still under development.") def test_Tick_CharacterGameplayComponentMotionIsSmooth(self, request, workspace, editor, launcher_platform): from .tests.tick import Tick_CharacterGameplayComponentMotionIsSmooth as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Main_Optimized.py b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Main_Optimized.py index 0661c6742b..b25b4340e8 100644 --- a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Main_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Main_Optimized.py @@ -59,9 +59,6 @@ class EditorSingleTest_WithFileOverrides(EditorSingleTest): @pytest.mark.parametrize("project", ["AutomatedTesting"]) class TestAutomationWithPrefabSystemEnabled(EditorTestSuite): - global_extra_cmdline_args = ['-BatchMode', '-autotest_mode', - '--regset=/Amazon/Preferences/EnablePrefabSystem=true'] - @staticmethod def get_number_parallel_editors(): return 16 @@ -81,6 +78,8 @@ class TestAutomationWithPrefabSystemEnabled(EditorTestSuite): @pytest.mark.parametrize("project", ["AutomatedTesting"]) class TestAutomation(EditorTestSuite): + enable_prefab_system = False + @staticmethod def get_number_parallel_editors(): return 16 diff --git a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Periodic.py index 55e51dd2f8..6daf852708 100755 --- a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Periodic.py @@ -31,223 +31,223 @@ class TestAutomation(TestAutomationBase): @revert_physics_config def test_Terrain_NoPhysTerrainComponentNoCollision(self, request, workspace, editor, launcher_platform): from .tests.terrain import Terrain_NoPhysTerrainComponentNoCollision as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_InitialLinearVelocity(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_InitialLinearVelocity as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_StartGravityEnabledWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_StartGravityEnabledWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_KinematicModeWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_KinematicModeWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_LinearDampingForceOnRigidBodies(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_LinearDampingForceOnRigidBodies as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_SimpleDragForceOnRigidBodies(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_SimpleDragForceOnRigidBodies as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_CapsuleShapedForce(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_CapsuleShapedForce as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ImpulsesCapsuleShapedRigidBody(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ImpulsesCapsuleShapedRigidBody as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_MomentOfInertiaManualSetting(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_MomentOfInertiaManualSetting as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_COM_ManualSettingWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_COM_ManualSettingWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_AddRigidBodyComponent(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_AddRigidBodyComponent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_SplineForceOnRigidBodies(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_SplineForceOnRigidBodies as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Material_RestitutionCombine.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Material_RestitutionCombine(self, request, workspace, editor, launcher_platform): from .tests.material import Material_RestitutionCombine as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Material_FrictionCombine.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Material_FrictionCombine(self, request, workspace, editor, launcher_platform): from .tests.material import Material_FrictionCombine as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Collider_ColliderPositionOffset(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_ColliderPositionOffset as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_AngularDampingAffectsRotation(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_AngularDampingAffectsRotation as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Physics_VerifyColliderRigidBodyMeshAndTerrainWorkTogether(self, request, workspace, editor, launcher_platform): from .tests import Physics_VerifyColliderRigidBodyMeshAndTerrainWorkTogether as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_MultipleForcesInSameComponentCombineForces(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_MultipleForcesInSameComponentCombineForces as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ImpulsesPxMeshShapedRigidBody(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ImpulsesPxMeshShapedRigidBody as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ScriptCanvas_TriggerEvents(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_TriggerEvents as test_module # FIXME: expected_lines = test_module.LogLines.expected_lines - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ZeroPointForceDoesNothing(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ZeroPointForceDoesNothing as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ZeroWorldSpaceForceDoesNothing(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ZeroWorldSpaceForceDoesNothing as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ZeroLinearDampingDoesNothing(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ZeroLinearDampingDoesNothing as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_MovingForceRegionChangesNetForce(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_MovingForceRegionChangesNetForce as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ScriptCanvas_CollisionEvents(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_CollisionEvents as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_DirectionHasNoAffectOnTotalForce(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_DirectionHasNoAffectOnTotalForce as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_StartAsleepWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_StartAsleepWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_SliceFileInstantiates(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_SliceFileInstantiates as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ZeroLocalSpaceForceDoesNothing(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ZeroLocalSpaceForceDoesNothing as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ZeroSimpleDragForceDoesNothing(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ZeroSimpleDragForceDoesNothing as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_COM_ComputingWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_COM_ComputingWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_MassDifferentValuesWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_MassDifferentValuesWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Material_RestitutionCombinePriorityOrder.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Material_RestitutionCombinePriorityOrder(self, request, workspace, editor, launcher_platform): from .tests.material import Material_RestitutionCombinePriorityOrder as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_SplineRegionWithModifiedTransform(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_SplineRegionWithModifiedTransform as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ScriptCanvas_ShapeCast(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_ShapeCast as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_InitialAngularVelocity(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_InitialAngularVelocity as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ZeroSplineForceDoesNothing(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ZeroSplineForceDoesNothing as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Physics_DynamicSliceWithPhysNotSpawnsStaticSlice(self, request, workspace, editor, launcher_platform): from .tests import Physics_DynamicSliceWithPhysNotSpawnsStaticSlice as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_PositionOffset(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_PositionOffset as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Material_FrictionCombinePriorityOrder.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Material_FrictionCombinePriorityOrder(self, request, workspace, editor, launcher_platform): from .tests.material import Material_FrictionCombinePriorityOrder as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail( reason="Something with the CryRenderer disabling is causing this test to fail now.") @revert_physics_config def test_Ragdoll_LevelSwitchDoesNotCrash(self, request, workspace, editor, launcher_platform): from .tests.ragdoll import Ragdoll_LevelSwitchDoesNotCrash as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_MultipleComponentsCombineForces(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_MultipleComponentsCombineForces as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # Marking the test as an expected failure due to sporadic failure on Automated Review: LYN-2580 # The test still runs, but a failure of the test doesn't result in the test run failing @@ -258,102 +258,102 @@ class TestAutomation(TestAutomationBase): 'AutomatedTesting/Registry', search_subdirs=True) def test_Material_PerFaceMaterialGetsCorrectMaterial(self, request, workspace, editor, launcher_platform): from .tests.material import Material_PerFaceMaterialGetsCorrectMaterial as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail( reason="This test will sometimes fail as the ball will continue to roll before the timeout is reached.") @revert_physics_config def test_RigidBody_SleepWhenBelowKineticThreshold(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_SleepWhenBelowKineticThreshold as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_COM_NotIncludesTriggerShapes(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_COM_NotIncludesTriggerShapes as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Material_NoEffectIfNoColliderShape(self, request, workspace, editor, launcher_platform): from .tests.material import Material_NoEffectIfNoColliderShape as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Collider_TriggerPassThrough(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_TriggerPassThrough as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_SetGravityWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_SetGravityWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Material_CharacterController.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Material_CharacterController(self, request, workspace, editor, launcher_platform): from .tests.material import Material_CharacterController as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Material_EmptyLibraryUsesDefault(self, request, workspace, editor, launcher_platform): from .tests.material import Material_EmptyLibraryUsesDefault as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_NoQuiverOnHighLinearDampingForce(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_NoQuiverOnHighLinearDampingForce as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_RigidBody_ComputeInertiaWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_ComputeInertiaWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ScriptCanvas_PostPhysicsUpdate(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_PostPhysicsUpdate as test_module # Fixme: unexpected_lines = ["Assert"] + test_module.Lines.unexpected - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Collider_NoneCollisionGroupSameLayerNotCollide.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Collider_NoneCollisionGroupSameLayerNotCollide(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_NoneCollisionGroupSameLayerNotCollide as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Collider_SameCollisionGroupSameCustomLayerCollide.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Collider_SameCollisionGroupSameCustomLayerCollide(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_SameCollisionGroupSameCustomLayerCollide as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxdefaultsceneconfiguration.setreg','ScriptCanvas_PostUpdateEvent.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_ScriptCanvas_PostUpdateEvent(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_PostUpdateEvent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Material_Restitution.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Material_Restitution(self, request, workspace, editor, launcher_platform): from .tests.material import Material_Restitution as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxdefaultsceneconfiguration.setreg', 'ScriptCanvas_PreUpdateEvent.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_ScriptCanvas_PreUpdateEvent(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_PreUpdateEvent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_PxMeshShapedForce(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_PxMeshShapedForce as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # Marking the Test as expected to fail using the xfail decorator due to sporadic failure on Automated Review: SPEC-3146 # The test still runs, but a failure of the test doesn't result in the test run failing @@ -361,176 +361,173 @@ class TestAutomation(TestAutomationBase): @revert_physics_config def test_RigidBody_MaxAngularVelocityWorks(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_MaxAngularVelocityWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Joints_HingeSoftLimitsConstrained(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_HingeSoftLimitsConstrained as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Joints_BallSoftLimitsConstrained(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_BallSoftLimitsConstrained as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Joints_BallLeadFollowerCollide(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_BallLeadFollowerCollide as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Collider_AddingNewGroupWorks.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Collider_AddingNewGroupWorks(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_AddingNewGroupWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ShapeCollider_InactiveWhenNoShapeComponent(self, request, workspace, editor, launcher_platform): from .tests.shape_collider import ShapeCollider_InactiveWhenNoShapeComponent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Collider_CheckDefaultShapeSettingIsPxMesh(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_CheckDefaultShapeSettingIsPxMesh as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ShapeCollider_LargeNumberOfShapeCollidersWontCrashEditor(self, request, workspace, editor, launcher_platform): from .tests.shape_collider import ShapeCollider_LargeNumberOfShapeCollidersWontCrashEditor as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Collider_SphereShapeEditing(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_SphereShapeEditing as test_module - self._run_test(request, workspace, editor, test_module, - extra_cmdline_args=["--regset=/Amazon/Preferences/EnablePrefabSystem=true"]) + self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_Collider_BoxShapeEditing(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_BoxShapeEditing as test_module - self._run_test(request, workspace, editor, test_module, - extra_cmdline_args=["--regset=/Amazon/Preferences/EnablePrefabSystem=true"]) + self._run_test(request, workspace, editor, test_module) @revert_physics_config def test_Collider_CapsuleShapeEditing(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_CapsuleShapeEditing as test_module - self._run_test(request, workspace, editor, test_module, - extra_cmdline_args=["--regset=/Amazon/Preferences/EnablePrefabSystem=true"]) + self._run_test(request, workspace, editor, test_module) def test_ForceRegion_WithNonTriggerColliderWarning(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_WithNonTriggerColliderWarning as test_module # Fixme: expected_lines = ["[Warning] (PhysX Force Region) - Please ensure collider component marked as trigger exists in entity"] - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ForceRegion_WorldSpaceForceOnRigidBodies(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_WorldSpaceForceOnRigidBodies as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ForceRegion_PointForceOnRigidBodies(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_PointForceOnRigidBodies as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ForceRegion_SphereShapedForce(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_SphereShapedForce as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ForceRegion_RotationalOffset(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_RotationalOffset as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Material_LibraryClearingAssignsDefault(self, request, workspace, editor, launcher_platform): from .tests.material import Material_LibraryClearingAssignsDefault as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Collider_AddColliderComponent(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_AddColliderComponent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail( reason="This will fail due to this issue ATOM-15487.") def test_Collider_PxMeshAutoAssignedWhenModifyingRenderMeshComponent(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_PxMeshAutoAssignedWhenModifyingRenderMeshComponent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Collider_PxMeshAutoAssignedWhenAddingRenderMeshComponent(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_PxMeshAutoAssignedWhenAddingRenderMeshComponent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Collider_MultipleSurfaceSlots(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_MultipleSurfaceSlots as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Collider_PxMeshNotAutoAssignedWhenNoPhysicsFbx(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_PxMeshNotAutoAssignedWhenNoPhysicsFbx as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_RigidBody_EnablingGravityWorksPoC(self, request, workspace, editor, launcher_platform): from .tests.rigid_body import RigidBody_EnablingGravityWorksPoC as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config @fm.file_override('physxsystemconfiguration.setreg','Collider_CollisionGroupsWorkflow.setreg_override', 'AutomatedTesting/Registry', search_subdirs=True) def test_Collider_CollisionGroupsWorkflow(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_CollisionGroupsWorkflow as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Collider_ColliderRotationOffset(self, request, workspace, editor, launcher_platform): from .tests.collider import Collider_ColliderRotationOffset as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ForceRegion_ParentChildForcesCombineForces(self, request, workspace, editor, launcher_platform): from .tests.force_region import ForceRegion_ParentChildForcesCombineForces as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_ShapeCollider_CanBeAddedWitNoWarnings(self, request, workspace, editor, launcher_platform): from .tests.shape_collider import ShapeCollider_CanBeAddedWitNoWarnings as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Physics_UndoRedoWorksOnEntityWithPhysComponents(self, request, workspace, editor, launcher_platform): from .tests import Physics_UndoRedoWorksOnEntityWithPhysComponents as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_Fixed2BodiesConstrained(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_Fixed2BodiesConstrained as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_Hinge2BodiesConstrained(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_Hinge2BodiesConstrained as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_Ball2BodiesConstrained(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_Ball2BodiesConstrained as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_FixedBreakable(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_FixedBreakable as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_HingeBreakable(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_HingeBreakable as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_BallBreakable(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_BallBreakable as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_HingeNoLimitsConstrained(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_HingeNoLimitsConstrained as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_BallNoLimitsConstrained(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_BallNoLimitsConstrained as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Joints_GlobalFrameConstrained(self, request, workspace, editor, launcher_platform): from .tests.joints import Joints_GlobalFrameConstrained as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @revert_physics_config def test_Material_DefaultLibraryUpdatedAcrossLevels(self, request, workspace, editor, launcher_platform): @@ -540,7 +537,7 @@ class TestAutomation(TestAutomationBase): search_subdirs=True) def levels_before(self, request, workspace, editor, launcher_platform): from .tests.material import Material_DefaultLibraryUpdatedAcrossLevels_before as test_module_0 - self._run_test(request, workspace, editor, test_module_0) + self._run_test(request, workspace, editor, test_module_0, enable_prefab_system=False) # File override replaces the previous physxconfiguration file with another where the only difference is the default material library @fm.file_override("physxsystemconfiguration.setreg", @@ -549,7 +546,7 @@ class TestAutomation(TestAutomationBase): search_subdirs=True) def levels_after(self, request, workspace, editor, launcher_platform): from .tests.material import Material_DefaultLibraryUpdatedAcrossLevels_after as test_module_1 - self._run_test(request, workspace, editor, test_module_1) + self._run_test(request, workspace, editor, test_module_1, enable_prefab_system=False) levels_before(self, request, workspace, editor, launcher_platform) levels_after(self, request, workspace, editor, launcher_platform) \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Sandbox.py index 81fdc747d5..9b104ccfcf 100644 --- a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Sandbox.py +++ b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Sandbox.py @@ -32,7 +32,7 @@ class TestAutomation(TestAutomationBase): def test_ScriptCanvas_GetCollisionNameReturnsName(self, request, workspace, editor, launcher_platform): from .tests.script_canvas import ScriptCanvas_GetCollisionNameReturnsName as test_module # Fixme: expected_lines=["Layer Name: Right"] - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) ## Seems to be flaky, need to investigate def test_ScriptCanvas_GetCollisionNameReturnsNothingWhenHasToggledLayer(self, request, workspace, editor, launcher_platform): @@ -42,4 +42,4 @@ class TestAutomation(TestAutomationBase): # Fixme: for group in collision_groups: # Fixme: unexpected_lines.append(f"GroupName: {group}") # Fixme: expected_lines=["GroupName: "] - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Utils.py b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Utils.py index 61c2816f50..3e00b684c0 100755 --- a/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Utils.py +++ b/AutomatedTesting/Gem/PythonTests/Physics/TestSuite_Utils.py @@ -30,11 +30,11 @@ class TestUtils(TestAutomationBase): expected_lines = [] unexpected_lines = ["Assert"] - self._run_test(request, workspace, editor, physmaterial_editor_test_module, expected_lines, unexpected_lines) + self._run_test(request, workspace, editor, physmaterial_editor_test_module, expected_lines, unexpected_lines, enable_prefab_system=False) def test_UtilTest_Tracer_PicksErrorsAndWarnings(self, request, workspace, launcher_platform, editor): from .utils import UtilTest_Tracer_PicksErrorsAndWarnings as testcase_module - self._run_test(request, workspace, editor, testcase_module, [], []) + self._run_test(request, workspace, editor, testcase_module, [], [], enable_prefab_system=False) def test_FileManagement_FindingFiles(self, workspace, launcher_platform): """ @@ -263,4 +263,4 @@ class TestUtils(TestAutomationBase): expected_lines = [] unexpected_lines = ["Assert"] - self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines) + self._run_test(request, workspace, editor, test_module, expected_lines, unexpected_lines, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/Prefab/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/Prefab/TestSuite_Main.py index 3c07105417..c1d4836342 100644 --- a/AutomatedTesting/Gem/PythonTests/Prefab/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/Prefab/TestSuite_Main.py @@ -23,7 +23,6 @@ class TestAutomation(TestAutomationBase): def _run_prefab_test(self, request, workspace, editor, test_module, batch_mode=True, autotest_mode=True): self._run_test(request, workspace, editor, test_module, - extra_cmdline_args=["--regset=/Amazon/Preferences/EnablePrefabSystem=true"], batch_mode=batch_mode, autotest_mode=autotest_mode) diff --git a/AutomatedTesting/Gem/PythonTests/Terrain/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/Terrain/TestSuite_Main.py index c5eec74c08..786651713c 100644 --- a/AutomatedTesting/Gem/PythonTests/Terrain/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/Terrain/TestSuite_Main.py @@ -20,6 +20,8 @@ from ly_test_tools.o3de.editor_test import EditorTestSuite, EditorSharedTest @pytest.mark.parametrize("project", ["AutomatedTesting"]) class TestAutomation(EditorTestSuite): + enable_prefab_system = False + class test_AxisAlignedBoxShape_ConfigurationWorks(EditorSharedTest): from .EditorScripts import TerrainPhysicsCollider_ChangesSizeWithAxisAlignedBoxShapeChanges as test_module diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/WhiteBox/TestSuite_Main.py index fa6c81c98a..2fc717e256 100644 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/TestSuite_Main.py @@ -24,12 +24,12 @@ from base import TestAutomationBase class TestAutomation(TestAutomationBase): def test_WhiteBox_AddComponentToEntity(self, request, workspace, editor, launcher_platform): from .tests import WhiteBox_AddComponentToEntity as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_WhiteBox_SetDefaultShape(self, request, workspace, editor, launcher_platform): from .tests import WhiteBox_SetDefaultShape as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_WhiteBox_SetInvisible(self, request, workspace, editor, launcher_platform): from .tests import WhiteBox_SetInvisible as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py index 41d693cb60..4543888a7c 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py @@ -52,7 +52,7 @@ class TestAutomationBase: cls._kill_ly_processes() def _run_test(self, request, workspace, editor, testcase_module, extra_cmdline_args=[], batch_mode=True, - autotest_mode=True, use_null_renderer=True): + autotest_mode=True, use_null_renderer=True, enable_prefab_system=True): test_starttime = time.time() self.logger = logging.getLogger(__name__) errors = [] @@ -97,6 +97,11 @@ class TestAutomationBase: pycmd += ["-BatchMode"] if autotest_mode: pycmd += ["-autotest_mode"] + if enable_prefab_system: + pycmd += ["--regset=/Amazon/Preferences/EnablePrefabSystem=true"] + else: + pycmd += ["--regset=/Amazon/Preferences/EnablePrefabSystem=false"] + pycmd += extra_cmdline_args editor.args.extend(pycmd) # args are added to the WinLauncher start command editor.start(backupFiles = False, launch_ap = False) diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main.py index 49069569eb..c9e91687e0 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main.py @@ -33,14 +33,14 @@ class TestAutomation(TestAutomationBase): def test_BasicEditorWorkflows_LevelEntityComponentCRUD(self, request, workspace, editor, launcher_platform, remove_test_level): from .EditorScripts import BasicEditorWorkflows_LevelEntityComponentCRUD as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False, autotest_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, autotest_mode=False, enable_prefab_system=False) @pytest.mark.REQUIRES_gpu def test_BasicEditorWorkflows_GPU_LevelEntityComponentCRUD(self, request, workspace, editor, launcher_platform, remove_test_level): from .EditorScripts import BasicEditorWorkflows_LevelEntityComponentCRUD as test_module self._run_test(request, workspace, editor, test_module, batch_mode=False, autotest_mode=False, - use_null_renderer=False) + use_null_renderer=False, enable_prefab_system=False) def test_EntityOutlienr_EntityOrdering(self, request, workspace, editor, launcher_platform): from .EditorScripts import EntityOutliner_EntityOrdering as test_module @@ -51,5 +51,4 @@ class TestAutomation(TestAutomationBase): test_module, batch_mode=False, autotest_mode=True, - extra_cmdline_args=["--regset=/Amazon/Preferences/EnablePrefabSystem=true"] ) diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main_Optimized.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main_Optimized.py index 820e4bd2aa..ccc4ee9737 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Main_Optimized.py @@ -21,6 +21,8 @@ class TestAutomationNoAutoTestMode(EditorTestSuite): # Disable -autotest_mode and -BatchMode. Tests cannot run in -BatchMode due to UI interactions, and these tests # interact with modal dialogs global_extra_cmdline_args = [] + + enable_prefab_system = False class test_BasicEditorWorkflows_LevelEntityComponentCRUD(EditorSingleTest): # Custom teardown to remove slice asset created during test @@ -56,6 +58,8 @@ class TestAutomationAutoTestMode(EditorTestSuite): # Enable only -autotest_mode for these tests. Tests cannot run in -BatchMode due to UI interactions global_extra_cmdline_args = ["-autotest_mode"] + enable_prefab_system = False + class test_AssetBrowser_TreeNavigation(EditorSharedTest): from .EditorScripts import AssetBrowser_TreeNavigation as test_module diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Periodic.py index f131a1c8bc..1bd1d7f987 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Periodic.py @@ -32,29 +32,29 @@ class TestAutomation(TestAutomationBase): def test_AssetBrowser_TreeNavigation(self, request, workspace, editor, launcher_platform): from .EditorScripts import AssetBrowser_TreeNavigation as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, enable_prefab_system=False) def test_AssetBrowser_SearchFiltering(self, request, workspace, editor, launcher_platform): from .EditorScripts import AssetBrowser_SearchFiltering as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, enable_prefab_system=False) def test_AssetPicker_UI_UX(self, request, workspace, editor, launcher_platform): from .EditorScripts import AssetPicker_UI_UX as test_module - self._run_test(request, workspace, editor, test_module, autotest_mode=False, batch_mode=False) + self._run_test(request, workspace, editor, test_module, autotest_mode=False, batch_mode=False, enable_prefab_system=False) def test_ComponentCRUD_Add_Delete_Components(self, request, workspace, editor, launcher_platform): from .EditorScripts import ComponentCRUD_Add_Delete_Components as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, enable_prefab_system=False) def test_InputBindings_Add_Remove_Input_Events(self, request, workspace, editor, launcher_platform): from .EditorScripts import InputBindings_Add_Remove_Input_Events as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False, autotest_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, autotest_mode=False, enable_prefab_system=False) def test_Menus_ViewMenuOptions_Work(self, request, workspace, editor, launcher_platform): from .EditorScripts import Menus_ViewMenuOptions as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, enable_prefab_system=False) @pytest.mark.skip(reason="Times out due to dialogs failing to dismiss: LYN-4208") def test_Menus_FileMenuOptions_Work(self, request, workspace, editor, launcher_platform): from .EditorScripts import Menus_FileMenuOptions as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox.py index 98a6620d9c..8a56a2dbfd 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox.py +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox.py @@ -20,8 +20,8 @@ class TestAutomation(TestAutomationBase): def test_Menus_EditMenuOptions_Work(self, request, workspace, editor, launcher_platform): from .EditorScripts import Menus_EditMenuOptions as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, enable_prefab_system=False) def test_Docking_BasicDockedTools(self, request, workspace, editor, launcher_platform): from .EditorScripts import Docking_BasicDockedTools as test_module - self._run_test(request, workspace, editor, test_module, batch_mode=False) + self._run_test(request, workspace, editor, test_module, batch_mode=False, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox_Optimized.py b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox_Optimized.py index 4a472095ae..ce0d5e43e9 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/editor/TestSuite_Sandbox_Optimized.py @@ -19,6 +19,8 @@ class TestAutomationAutoTestMode(EditorTestSuite): # Enable only -autotest_mode for these tests. Tests cannot run in -BatchMode due to UI interactions global_extra_cmdline_args = ["-autotest_mode"] + enable_prefab_system = False + class test_Docking_BasicDockedTools(EditorSharedTest): from .EditorScripts import Docking_BasicDockedTools as test_module diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Main.py index 4c02c887ef..06c9c5f615 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Main.py @@ -20,8 +20,8 @@ class TestAutomation(TestAutomationBase): def test_DynamicSliceInstanceSpawner_DynamicSliceSpawnerWorks(self, request, workspace, editor, launcher_platform): from .EditorScripts import DynamicSliceInstanceSpawner_DynamicSliceSpawnerWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_EmptyInstanceSpawner_EmptySpawnerWorks(self, request, workspace, editor, launcher_platform): from .EditorScripts import EmptyInstanceSpawner_EmptySpawnerWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Main_Optimized.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Main_Optimized.py index ded2dda4e9..ed23af51ad 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Main_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Main_Optimized.py @@ -18,6 +18,8 @@ from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, E @pytest.mark.parametrize("project", ["AutomatedTesting"]) class TestAutomation(EditorTestSuite): + enable_prefab_system = False + class test_DynamicSliceInstanceSpawner_DynamicSliceSpawnerWorks(EditorParallelTest): from .EditorScripts import DynamicSliceInstanceSpawner_DynamicSliceSpawnerWorks as test_module diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Periodic.py index 2780c0f471..d0d570950b 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Periodic.py @@ -52,158 +52,158 @@ class TestAutomation(TestAutomationBase): def test_AltitudeFilter_ComponentAndOverrides_InstancesPlantAtSpecifiedAltitude(self, request, workspace, editor, launcher_platform): from .EditorScripts import AltitudeFilter_ComponentAndOverrides_InstancesPlantAtSpecifiedAltitude as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_AltitudeFilter_ShapeSample_InstancesPlantAtSpecifiedAltitude(self, request, workspace, editor, launcher_platform): from .EditorScripts import AltitudeFilter_ShapeSample_InstancesPlantAtSpecifiedAltitude as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_AltitudeFilter_FilterStageToggle(self, request, workspace, editor, launcher_platform): from .EditorScripts import AltitudeFilter_FilterStageToggle as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SpawnerSlices_SliceCreationAndVisibilityToggleWorks(self, request, workspace, editor, remove_test_slice, launcher_platform): from .EditorScripts import SpawnerSlices_SliceCreationAndVisibilityToggleWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_AssetListCombiner_CombinedDescriptorsExpressInConfiguredArea(self, request, workspace, editor, launcher_platform): from .EditorScripts import AssetListCombiner_CombinedDescriptorsExpressInConfiguredArea as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_AssetWeightSelector_InstancesExpressBasedOnWeight(self, request, workspace, editor, launcher_platform): from .EditorScripts import AssetWeightSelector_InstancesExpressBasedOnWeight as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/4155") def test_DistanceBetweenFilter_InstancesPlantAtSpecifiedRadius(self, request, workspace, editor, launcher_platform): from .EditorScripts import DistanceBetweenFilter_InstancesPlantAtSpecifiedRadius as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/4155") def test_DistanceBetweenFilterOverrides_InstancesPlantAtSpecifiedRadius(self, request, workspace, editor, launcher_platform): from .EditorScripts import DistanceBetweenFilterOverrides_InstancesPlantAtSpecifiedRadius as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SurfaceDataRefreshes_RemainsStable(self, request, workspace, editor, launcher_platform): from .EditorScripts import SurfaceDataRefreshes_RemainsStable as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_VegetationInstances_DespawnWhenOutOfRange(self, request, workspace, editor, launcher_platform): from .EditorScripts import VegetationInstances_DespawnWhenOutOfRange as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_InstanceSpawnerPriority_LayerAndSubPriority_HigherValuesPlantOverLower(self, request, workspace, editor, launcher_platform): from .EditorScripts import InstanceSpawnerPriority_LayerAndSubPriority as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LayerBlocker_InstancesBlockedInConfiguredArea(self, request, workspace, editor, launcher_platform): from .EditorScripts import LayerBlocker_InstancesBlockedInConfiguredArea as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LayerSpawner_InheritBehaviorFlag(self, request, workspace, editor, launcher_platform): from .EditorScripts import LayerSpawner_InheritBehaviorFlag as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LayerSpawner_InstancesPlantInAllSupportedShapes(self, request, workspace, editor, launcher_platform): from .EditorScripts import LayerSpawner_InstancesPlantInAllSupportedShapes as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LayerSpawner_FilterStageToggle(self, request, workspace, editor, launcher_platform): from .EditorScripts import LayerSpawner_FilterStageToggle as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/2038") def test_LayerSpawner_InstancesRefreshUsingCorrectViewportCamera(self, request, workspace, editor, launcher_platform): from .EditorScripts import LayerSpawner_InstancesRefreshUsingCorrectViewportCamera as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_MeshBlocker_InstancesBlockedByMesh(self, request, workspace, editor, launcher_platform): from .EditorScripts import MeshBlocker_InstancesBlockedByMesh as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_MeshBlocker_InstancesBlockedByMeshHeightTuning(self, request, workspace, editor, launcher_platform): from .EditorScripts import MeshBlocker_InstancesBlockedByMeshHeightTuning as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_MeshSurfaceTagEmitter_DependentOnMeshComponent(self, request, workspace, editor, launcher_platform): from .EditorScripts import MeshSurfaceTagEmitter_DependentOnMeshComponent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_MeshSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully(self, request, workspace, editor, launcher_platform): from .EditorScripts import MeshSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_PhysXColliderSurfaceTagEmitter_E2E_Editor(self, request, workspace, editor, launcher_platform): from .EditorScripts import PhysXColliderSurfaceTagEmitter_E2E_Editor as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_PositionModifier_ComponentAndOverrides_InstancesPlantAtSpecifiedOffsets(self, request, workspace, editor, launcher_platform): from .EditorScripts import PositionModifier_ComponentAndOverrides_InstancesPlantAtSpecifiedOffsets as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_PositionModifier_AutoSnapToSurfaceWorks(self, request, workspace, editor, launcher_platform): from .EditorScripts import PositionModifier_AutoSnapToSurfaceWorks as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_RotationModifier_InstancesRotateWithinRange(self, request, workspace, editor, launcher_platform): from .EditorScripts import RotationModifier_InstancesRotateWithinRange as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_RotationModifierOverrides_InstancesRotateWithinRange(self, request, workspace, editor, launcher_platform): from .EditorScripts import RotationModifierOverrides_InstancesRotateWithinRange as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ScaleModifier_InstancesProperlyScale(self, request, workspace, editor, launcher_platform): from .EditorScripts import ScaleModifier_InstancesProperlyScale as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ScaleModifierOverrides_InstancesProperlyScale(self, request, workspace, editor, launcher_platform): from .EditorScripts import ScaleModifierOverrides_InstancesProperlyScale as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ShapeIntersectionFilter_InstancesPlantInAssignedShape(self, request, workspace, editor, launcher_platform): from .EditorScripts import ShapeIntersectionFilter_InstancesPlantInAssignedShape as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ShapeIntersectionFilter_FilterStageToggle(self, request, workspace, editor, launcher_platform): from .EditorScripts import ShapeIntersectionFilter_FilterStageToggle as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SlopeAlignmentModifier_InstanceSurfaceAlignment(self, request, workspace, editor, launcher_platform): from .EditorScripts import SlopeAlignmentModifier_InstanceSurfaceAlignment as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SlopeAlignmentModifierOverrides_InstanceSurfaceAlignment(self, request, workspace, editor, launcher_platform): from .EditorScripts import SlopeAlignmentModifierOverrides_InstanceSurfaceAlignment as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SurfaceMaskFilter_BasicSurfaceTagCreation(self, request, workspace, editor, launcher_platform): from .EditorScripts import SurfaceMaskFilter_BasicSurfaceTagCreation as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SurfaceMaskFilter_ExclusiveSurfaceTags_Function(self, request, workspace, editor, launcher_platform): from .EditorScripts import SurfaceMaskFilter_ExclusionList as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SurfaceMaskFilter_InclusiveSurfaceTags_Function(self, request, workspace, editor, launcher_platform): from .EditorScripts import SurfaceMaskFilter_InclusionList as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SurfaceMaskFilterOverrides_MultipleDescriptorOverridesPlantAsExpected(self, request, workspace, editor, launcher_platform): from .EditorScripts import SurfaceMaskFilterOverrides_MultipleDescriptorOverridesPlantAsExpected as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SystemSettings_SectorPointDensity(self, request, workspace, editor, launcher_platform): from .EditorScripts import SystemSettings_SectorPointDensity as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SystemSettings_SectorSize(self, request, workspace, editor, launcher_platform): from .EditorScripts import SystemSettings_SectorSize as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_SlopeFilter_ComponentAndOverrides_InstancesPlantOnValidSlopes(self, request, workspace, editor, launcher_platform): from .EditorScripts import SlopeFilter_ComponentAndOverrides_InstancesPlantOnValidSlope as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.SUITE_periodic @@ -219,7 +219,7 @@ class TestAutomationE2E(TestAutomationBase): file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) from .EditorScripts import DynamicSliceInstanceSpawner_Embedded_E2E as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.parametrize("launcher_platform", ['windows']) def test_DynamicSliceInstanceSpawner_Embedded_E2E_Launcher(self, workspace, launcher, level, @@ -240,7 +240,7 @@ class TestAutomationE2E(TestAutomationBase): file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) from .EditorScripts import DynamicSliceInstanceSpawner_External_E2E as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.parametrize("launcher_platform", ['windows']) def test_DynamicSliceInstanceSpawner_External_E2E_Launcher(self, workspace, launcher, level, @@ -261,7 +261,7 @@ class TestAutomationE2E(TestAutomationBase): file_system.delete([os.path.join(workspace.paths.engine_root(), project, "Levels", level)], True, True) from .EditorScripts import LayerBlender_E2E_Editor as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.parametrize("launcher_platform", ['windows']) @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/4170") diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Periodic_Optimized.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Periodic_Optimized.py index 8d298e970b..f87d6567ef 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Periodic_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/TestSuite_Periodic_Optimized.py @@ -17,7 +17,7 @@ from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, E @pytest.mark.parametrize("project", ["AutomatedTesting"]) class TestAutomation(EditorTestSuite): - global_extra_cmdline_args = ["-BatchMode", "-autotest_mode", "--regset=/Amazon/Preferences/EnablePrefabSystem=true"] + global_extra_cmdline_args = ["-BatchMode", "-autotest_mode"] class test_DynVegUtils_TempPrefabCreationWorks(EditorSharedTest): from .EditorScripts import DynVegUtils_TempPrefabCreationWorks as test_module diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic.py index 21eecf642c..3ad27eb973 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic.py @@ -20,52 +20,52 @@ class TestAutomation(TestAutomationBase): def test_GradientGenerators_Incompatibilities(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientGenerators_Incompatibilities as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientModifiers_Incompatibilities(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientModifiers_Incompatibilities as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientPreviewSettings_DefaultPinnedEntityIsSelf(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientPreviewSettings_DefaultPinnedEntityIsSelf as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientSampling_GradientReferencesAddRemoveSuccessfully(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientSampling_GradientReferencesAddRemoveSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientSurfaceTagEmitter_ComponentDependencies(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientSurfaceTagEmitter_ComponentDependencies as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientTransform_RequiresShape(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientTransform_RequiresShape as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientTransform_ComponentIncompatibleWithSpawners(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientTransform_ComponentIncompatibleWithSpawners as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_GradientTransform_ComponentIncompatibleWithExpectedGradients(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientTransform_ComponentIncompatibleWithExpectedGradients as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ImageGradient_RequiresShape(self, request, workspace, editor, launcher_platform): from .EditorScripts import ImageGradient_RequiresShape as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ImageGradient_ProcessedImageAssignedSuccessfully(self, request, workspace, editor, launcher_platform): from .EditorScripts import ImageGradient_ProcessedImageAssignedSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic_Optimized.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic_Optimized.py index 514504d324..6ac0658b4d 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/TestSuite_Periodic_Optimized.py @@ -15,6 +15,8 @@ from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, E @pytest.mark.parametrize("project", ["AutomatedTesting"]) class TestAutomation(EditorTestSuite): + enable_prefab_system = False + class test_GradientGenerators_Incompatibilities(EditorSharedTest): from .EditorScripts import GradientGenerators_Incompatibilities as test_module diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main.py index af4855a546..dedc9c70c0 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main.py @@ -22,8 +22,8 @@ class TestAutomation(TestAutomationBase): def test_LandscapeCanvas_SlotConnections_UpdateComponentReferences(self, request, workspace, editor, launcher_platform): from .EditorScripts import SlotConnections_UpdateComponentReferences as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GradientMixer_NodeConstruction(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientMixer_NodeConstruction as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main_Optimized.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main_Optimized.py index 1c3652cae9..402df133cb 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main_Optimized.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Main_Optimized.py @@ -18,6 +18,8 @@ from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, E @pytest.mark.parametrize("project", ["AutomatedTesting"]) class TestAutomation(EditorTestSuite): + enable_prefab_system = False + class test_LandscapeCanvas_SlotConnections_UpdateComponentReferences(EditorSharedTest): from .EditorScripts import SlotConnections_UpdateComponentReferences as test_module diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Periodic.py index ef8b3e492b..a719b1a7c0 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/TestSuite_Periodic.py @@ -33,89 +33,89 @@ class TestAutomation(TestAutomationBase): def test_LandscapeCanvas_AreaNodes_DependentComponentsAdded(self, request, workspace, editor, launcher_platform): from .EditorScripts import AreaNodes_DependentComponentsAdded as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_AreaNodes_EntityCreatedOnNodeAdd(self, request, workspace, editor, launcher_platform): from .EditorScripts import AreaNodes_EntityCreatedOnNodeAdd as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_AreaNodes_EntityRemovedOnNodeDelete(self, request, workspace, editor, launcher_platform): from .EditorScripts import AreaNodes_EntityRemovedOnNodeDelete as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_LayerExtenderNodes_ComponentEntitySync(self, request, workspace, editor, launcher_platform): from .EditorScripts import LayerExtenderNodes_ComponentEntitySync as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_Edit_DisabledNodeDuplication(self, request, workspace, editor, launcher_platform): from .EditorScripts import Edit_DisabledNodeDuplication as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_Edit_UndoNodeDelete_SliceEntity(self, request, workspace, editor, launcher_platform): from .EditorScripts import Edit_UndoNodeDelete_SliceEntity as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_NewGraph_CreatedSuccessfully(self, request, workspace, editor, launcher_platform): from .EditorScripts import NewGraph_CreatedSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_Component_AddedRemoved(self, request, workspace, editor, launcher_platform): from .EditorScripts import Component_AddedRemoved as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GraphClosed_OnLevelChange(self, request, workspace, editor, launcher_platform): from .EditorScripts import GraphClosed_OnLevelChange as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/2201") def test_LandscapeCanvas_GraphClosed_OnEntityDelete(self, request, workspace, editor, launcher_platform): from .EditorScripts import GraphClosed_OnEntityDelete as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GraphClosed_TabbedGraphClosesIndependently(self, request, workspace, editor, launcher_platform): from .EditorScripts import GraphClosed_TabbedGraph as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_Slice_CreateInstantiate(self, request, workspace, editor, remove_test_slice, launcher_platform): from .EditorScripts import Slice_CreateInstantiate as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GradientModifierNodes_EntityCreatedOnNodeAdd(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientModifierNodes_EntityCreatedOnNodeAdd as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GradientModifierNodes_EntityRemovedOnNodeDelete(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientModifierNodes_EntityRemovedOnNodeDelete as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GradientNodes_DependentComponentsAdded(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientNodes_DependentComponentsAdded as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GradientNodes_EntityCreatedOnNodeAdd(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientNodes_EntityCreatedOnNodeAdd as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GradientNodes_EntityRemovedOnNodeDelete(self, request, workspace, editor, launcher_platform): from .EditorScripts import GradientNodes_EntityRemovedOnNodeDelete as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_GraphUpdates_UpdateComponents(self, request, workspace, editor, launcher_platform): from .EditorScripts import GraphUpdates_UpdateComponents as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_ComponentUpdates_UpdateGraph(self, request, workspace, editor, launcher_platform): from .EditorScripts import ComponentUpdates_UpdateGraph as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_LayerBlender_NodeConstruction(self, request, workspace, editor, launcher_platform): from .EditorScripts import LayerBlender_NodeConstruction as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_ShapeNodes_EntityCreatedOnNodeAdd(self, request, workspace, editor, launcher_platform): from .EditorScripts import ShapeNodes_EntityCreatedOnNodeAdd as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_LandscapeCanvas_ShapeNodes_EntityRemovedOnNodeDelete(self, request, workspace, editor, launcher_platform): from .EditorScripts import ShapeNodes_EntityRemovedOnNodeDelete as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py index b2001e6825..27af63ddbc 100755 --- a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py @@ -27,15 +27,15 @@ TEST_DIRECTORY = os.path.dirname(__file__) class TestAutomation(TestAutomationBase): def test_Pane_HappyPath_OpenCloseSuccessfully(self, request, workspace, editor, launcher_platform): from . import Pane_HappyPath_OpenCloseSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Pane_HappyPath_DocksProperly(self, request, workspace, editor, launcher_platform): from . import Pane_HappyPath_DocksProperly as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Pane_HappyPath_ResizesProperly(self, request, workspace, editor, launcher_platform): from . import Pane_HappyPath_ResizesProperly as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @pytest.mark.parametrize("level", ["tmp_level"]) @@ -45,7 +45,7 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import ScriptCanvas_TwoComponents_InteractSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @pytest.mark.parametrize("level", ["tmp_level"]) @@ -55,15 +55,15 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import ScriptCanvas_ChangingAssets_ComponentStable as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Graph_HappyPath_ZoomInZoomOut(self, request, workspace, editor, launcher_platform): from . import Graph_HappyPath_ZoomInZoomOut as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_NodePalette_HappyPath_CanSelectNode(self, request, workspace, editor, launcher_platform): from . import NodePalette_HappyPath_CanSelectNode as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @pytest.mark.parametrize("level", ["tmp_level"]) @@ -73,11 +73,11 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import ScriptCanvasComponent_OnEntityActivatedDeactivated_PrintMessage as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_NodePalette_HappyPath_ClearSelection(self, request, workspace, editor, launcher_platform, project): from . import NodePalette_HappyPath_ClearSelection as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @pytest.mark.parametrize("level", ["tmp_level"]) @@ -87,7 +87,7 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import ScriptCanvas_TwoEntities_UseSimultaneously as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ScriptEvent_HappyPath_CreatedWithoutError(self, request, workspace, editor, launcher_platform, project): def teardown(): @@ -99,19 +99,19 @@ class TestAutomation(TestAutomationBase): [os.path.join(workspace.paths.project(), "ScriptCanvas", "test_file.scriptevent")], True, True ) from . import ScriptEvent_HappyPath_CreatedWithoutError as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ScriptCanvasTools_Toggle_OpenCloseSuccess(self, request, workspace, editor, launcher_platform): from . import ScriptCanvasTools_Toggle_OpenCloseSuccess as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_NodeInspector_HappyPath_VariableRenames(self, request, workspace, editor, launcher_platform, project): from . import NodeInspector_HappyPath_VariableRenames as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Debugger_HappyPath_TargetMultipleGraphs(self, request, workspace, editor, launcher_platform, project): from . import Debugger_HappyPath_TargetMultipleGraphs as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.parametrize("level", ["tmp_level"]) def test_Debugger_HappyPath_TargetMultipleEntities(self, request, workspace, editor, launcher_platform, project, level): @@ -120,16 +120,16 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import Debugger_HappyPath_TargetMultipleEntities as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") def test_EditMenu_Default_UndoRedo(self, request, workspace, editor, launcher_platform, project): from . import EditMenu_Default_UndoRedo as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Pane_Undocked_ClosesSuccessfully(self, request, workspace, editor, launcher_platform): from . import Pane_Undocked_ClosesSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.parametrize("level", ["tmp_level"]) def test_Entity_HappyPath_AddScriptCanvasComponent(self, request, workspace, editor, launcher_platform, project, level): @@ -138,11 +138,11 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import Entity_HappyPath_AddScriptCanvasComponent as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Pane_Default_RetainOnSCRestart(self, request, workspace, editor, launcher_platform): from . import Pane_Default_RetainOnSCRestart as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @pytest.mark.parametrize("level", ["tmp_level"]) @@ -152,7 +152,7 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import ScriptEvents_HappyPath_SendReceiveAcrossMultiple as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @pytest.mark.parametrize("level", ["tmp_level"]) @@ -162,7 +162,7 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import ScriptEvents_Default_SendReceiveSuccessfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @pytest.mark.parametrize("level", ["tmp_level"]) @@ -172,24 +172,24 @@ class TestAutomation(TestAutomationBase): request.addfinalizer(teardown) file_system.delete([os.path.join(workspace.paths.project(), "Levels", level)], True, True) from . import ScriptEvents_ReturnSetType_Successfully as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_NodeCategory_ExpandOnClick(self, request, workspace, editor, launcher_platform): from . import NodeCategory_ExpandOnClick as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_NodePalette_SearchText_Deletion(self, request, workspace, editor, launcher_platform): from . import NodePalette_SearchText_Deletion as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") def test_VariableManager_UnpinVariableType_Works(self, request, workspace, editor, launcher_platform): from . import VariableManager_UnpinVariableType_Works as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_Node_HappyPath_DuplicateNode(self, request, workspace, editor, launcher_platform): from . import Node_HappyPath_DuplicateNode as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) def test_ScriptEvent_AddRemoveParameter_ActionsSuccessful(self, request, workspace, editor, launcher_platform): def teardown(): @@ -201,7 +201,7 @@ class TestAutomation(TestAutomationBase): [os.path.join(workspace.paths.project(), "ScriptCanvas", "test_file.scriptevent")], True, True ) from . import ScriptEvent_AddRemoveParameter_ActionsSuccessful as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) # NOTE: We had to use hydra_test_utils.py, as TestAutomationBase run_test method # fails because of pyside_utils import @@ -220,7 +220,14 @@ class TestScriptCanvasTests(object): "File->Open action working as expected: True", ] hydra.launch_and_validate_results( - request, TEST_DIRECTORY, editor, "FileMenu_Default_NewAndOpen.py", expected_lines, auto_test_mode=False, timeout=60, + request, + TEST_DIRECTORY, + editor, + "FileMenu_Default_NewAndOpen.py", + expected_lines, + auto_test_mode=False, + timeout=60, + enable_prefab_system=False, ) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @@ -239,6 +246,7 @@ class TestScriptCanvasTests(object): expected_lines, auto_test_mode=False, timeout=60, + enable_prefab_system=False, ) def test_GraphClose_Default_SavePrompt(self, request, editor, launcher_platform): @@ -255,6 +263,7 @@ class TestScriptCanvasTests(object): expected_lines, auto_test_mode=False, timeout=60, + enable_prefab_system=False, ) def test_VariableManager_Default_CreateDeleteVars(self, request, editor, launcher_platform): @@ -269,6 +278,7 @@ class TestScriptCanvasTests(object): expected_lines, auto_test_mode=False, timeout=60, + enable_prefab_system=False, ) @pytest.mark.parametrize( @@ -304,6 +314,7 @@ class TestScriptCanvasTests(object): cfg_args=[config.get('cfg_args')], auto_test_mode=False, timeout=60, + enable_prefab_system=False, ) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @@ -332,6 +343,7 @@ class TestScriptCanvasTests(object): expected_lines, auto_test_mode=False, timeout=60, + enable_prefab_system=False, ) @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") @@ -359,5 +371,6 @@ class TestScriptCanvasTests(object): expected_lines, auto_test_mode=False, timeout=60, + enable_prefab_system=False, ) \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Sandbox.py index 91b01d8d08..071ae2286c 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Sandbox.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Sandbox.py @@ -23,4 +23,4 @@ class TestAutomation(TestAutomationBase): def test_Opening_Closing_Pane(self, request, workspace, editor, launcher_platform): from . import Opening_Closing_Pane as test_module - self._run_test(request, workspace, editor, test_module) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py index ebaebcfa92..5caf7744c4 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py @@ -31,4 +31,4 @@ class TestAutomation(TestAutomationBase): from . import Editor_NewExistingLevels_Works as test_module - self._run_test(request, workspace, editor, test_module, extra_cmdline_args=["--regset=/Amazon/Preferences/EnablePrefabSystem=false"]) + self._run_test(request, workspace, editor, test_module, enable_prefab_system=False) diff --git a/AutomatedTesting/Registry/editorpreferences.setreg b/AutomatedTesting/Registry/editorpreferences.setreg index b338d6acad..e76e04f9ba 100644 --- a/AutomatedTesting/Registry/editorpreferences.setreg +++ b/AutomatedTesting/Registry/editorpreferences.setreg @@ -1,7 +1,7 @@ { "Amazon": { "Preferences": { - "EnablePrefabSystem": false + "EnablePrefabSystem": true } } } \ No newline at end of file diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp index 9ac28cfd91..d0318ee181 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp @@ -27,7 +27,6 @@ #include #include #include -#include #include #include #include @@ -893,37 +892,34 @@ namespace AzToolsFramework prevModifiers = action.m_modifiers; } - static void HandleAccents( - const bool hasSelectedEntities, - const AZ::EntityId entityIdUnderCursor, - const bool ctrlHeld, - AZ::EntityId& hoveredEntityId, + void HandleAccents( + const AZ::EntityId currentEntityIdUnderCursor, + AZ::EntityId& hoveredEntityIdUnderCursor, + const HandleAccentsContext& handleAccentsContext, const ViewportInteraction::MouseButtons mouseButtons, - const bool usingBoxSelect) + const AZStd::function& setEntityAccentedFn) { - AZ_PROFILE_FUNCTION(AzToolsFramework); - const bool invalidMouseButtonHeld = mouseButtons.Middle() || mouseButtons.Right(); + const bool hasSelectedEntities = handleAccentsContext.m_hasSelectedEntities; + const bool ctrlHeld = handleAccentsContext.m_ctrlHeld; + const bool boxSelect = handleAccentsContext.m_usingBoxSelect; + const bool stickySelect = handleAccentsContext.m_usingStickySelect; + const bool canSelect = stickySelect ? !hasSelectedEntities || ctrlHeld : true; - if ((hoveredEntityId.IsValid() && hoveredEntityId != entityIdUnderCursor) || - (hasSelectedEntities && !ctrlHeld && hoveredEntityId.IsValid()) || invalidMouseButtonHeld) + const bool removePreviousAccent = + (currentEntityIdUnderCursor != hoveredEntityIdUnderCursor && hoveredEntityIdUnderCursor.IsValid()) || invalidMouseButtonHeld; + const bool addNextAccent = currentEntityIdUnderCursor.IsValid() && canSelect && !invalidMouseButtonHeld && !boxSelect; + + if (removePreviousAccent) { - if (hoveredEntityId.IsValid()) - { - ToolsApplicationRequestBus::Broadcast(&ToolsApplicationRequests::SetEntityHighlighted, hoveredEntityId, false); - - hoveredEntityId.SetInvalid(); - } + setEntityAccentedFn(hoveredEntityIdUnderCursor, false); + hoveredEntityIdUnderCursor.SetInvalid(); } - if (!invalidMouseButtonHeld && !usingBoxSelect && (!hasSelectedEntities || ctrlHeld)) + if (addNextAccent) { - if (entityIdUnderCursor.IsValid()) - { - ToolsApplicationRequestBus::Broadcast(&ToolsApplicationRequests::SetEntityHighlighted, entityIdUnderCursor, true); - - hoveredEntityId = entityIdUnderCursor; - } + setEntityAccentedFn(currentEntityIdUnderCursor, true); + hoveredEntityIdUnderCursor = currentEntityIdUnderCursor; } } @@ -1781,7 +1777,7 @@ namespace AzToolsFramework const AzFramework::CameraState cameraState = GetCameraState(viewportId); const auto cursorEntityIdQuery = m_editorHelpers->FindEntityIdUnderCursor(cameraState, mouseInteraction); - m_cachedEntityIdUnderCursor = cursorEntityIdQuery.ContainerAncestorEntityId(); + m_currentEntityIdUnderCursor = cursorEntityIdQuery.ContainerAncestorEntityId(); const auto selectClickEvent = ClickDetectorEventFromViewportInteraction(mouseInteraction); m_cursorState.SetCurrentPosition(mouseInteraction.m_mouseInteraction.m_mousePick.m_screenCoordinates); @@ -1802,7 +1798,7 @@ namespace AzToolsFramework mouseInteraction.m_mouseInteraction, AZ::Aabb::CreateFromMinMax(boxPosition - scaledSize, boxPosition + scaledSize))) { - m_cachedEntityIdUnderCursor = entityId; + m_currentEntityIdUnderCursor = entityId; } } } @@ -1822,7 +1818,7 @@ namespace AzToolsFramework return true; } - const AZ::EntityId entityIdUnderCursor = m_cachedEntityIdUnderCursor; + const AZ::EntityId entityIdUnderCursor = m_currentEntityIdUnderCursor; if (mouseInteraction.m_mouseEvent == ViewportInteraction::MouseEvent::DoubleClick && mouseInteraction.m_mouseInteraction.m_mouseButtons.Left()) @@ -3341,9 +3337,23 @@ namespace AzToolsFramework m_cursorState.Update(); + bool stickySelect = false; + ViewportInteraction::ViewportSettingsRequestBus::EventResult( + stickySelect, viewportInfo.m_viewportId, &ViewportInteraction::ViewportSettingsRequestBus::Events::StickySelectEnabled); + + HandleAccentsContext handleAccentsContext; + handleAccentsContext.m_ctrlHeld = keyboardModifiers.Ctrl(); + handleAccentsContext.m_hasSelectedEntities = !m_selectedEntityIds.empty(); + handleAccentsContext.m_usingBoxSelect = m_boxSelect.Active(); + handleAccentsContext.m_usingStickySelect = stickySelect; + HandleAccents( - !m_selectedEntityIds.empty(), m_cachedEntityIdUnderCursor, keyboardModifiers.Ctrl(), m_hoveredEntityId, - ViewportInteraction::BuildMouseButtons(QGuiApplication::mouseButtons()), m_boxSelect.Active()); + m_currentEntityIdUnderCursor, m_hoveredEntityId, handleAccentsContext, + ViewportInteraction::BuildMouseButtons(QGuiApplication::mouseButtons()), + [](const AZ::EntityId entityId, bool highlighted) + { + ToolsApplicationRequestBus::Broadcast(&ToolsApplicationRequests::SetEntityHighlighted, entityId, highlighted); + }); const ReferenceFrame referenceFrame = m_spaceCluster.m_spaceLock.value_or(ReferenceFrameFromModifiers(keyboardModifiers)); @@ -3589,7 +3599,8 @@ namespace AzToolsFramework if (auto prefabFocusPublicInterface = AZ::Interface::Get()) { AzFramework::EntityContextId editorEntityContextId = GetEntityContextId(); - if (AZ::EntityId focusRoot = prefabFocusPublicInterface->GetFocusedPrefabContainerEntityId(editorEntityContextId); focusRoot.IsValid()) + if (AZ::EntityId focusRoot = prefabFocusPublicInterface->GetFocusedPrefabContainerEntityId(editorEntityContextId); + focusRoot.IsValid()) { m_selectedEntityIds.erase(focusRoot); } @@ -3721,7 +3732,6 @@ namespace AzToolsFramework break; case ViewportEditorMode::Focus: { - ViewportUi::ViewportUiRequestBus::Event( ViewportUi::DefaultViewportId, &ViewportUi::ViewportUiRequestBus::Events::RemoveViewportBorder); } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h index 1e1cc6d2e1..10f83db739 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h @@ -317,7 +317,7 @@ namespace AzToolsFramework void SetAllViewportUiVisible(bool visible); AZ::EntityId m_hoveredEntityId; //!< What EntityId is the mouse currently hovering over (if any). - AZ::EntityId m_cachedEntityIdUnderCursor; //!< Store the EntityId on each mouse move for use in Display. + AZ::EntityId m_currentEntityIdUnderCursor; //!< Store the EntityId on each mouse move for use in Display. AZ::EntityId m_editorCameraComponentEntityId; //!< The EditorCameraComponent EntityId if it is set. EntityIdSet m_selectedEntityIds; //!< Represents the current entities in the selection. @@ -357,6 +357,23 @@ namespace AzToolsFramework bool m_viewportUiVisible = true; //!< Used to hide/show the viewport ui elements. }; + //! Bundles viewport state that impacts how accents are added/removed in HandleAccents. + struct HandleAccentsContext + { + bool m_hasSelectedEntities; + bool m_ctrlHeld; + bool m_usingBoxSelect; + bool m_usingStickySelect; + }; + + //! Updates whether accents (icon highlights) are added/removed for a given entity based on the cursor position. + void HandleAccents( + AZ::EntityId currentEntityIdUnderCursor, + AZ::EntityId& hoveredEntityIdUnderCursor, + const HandleAccentsContext& handleAccentsContext, + ViewportInteraction::MouseButtons mouseButtons, + const AZStd::function& setEntityAccentedFn); + //! The ETCS (EntityTransformComponentSelection) namespace contains functions and data used exclusively by //! the EditorTransformComponentSelection type. Functions in this namespace are exposed to facilitate testing //! and should not be used outside of EditorTransformComponentSelection or EditorTransformComponentSelectionTests. diff --git a/Code/Framework/AzToolsFramework/Platform/Linux/AzToolsFramework/API/PythonLoader_Linux.cpp b/Code/Framework/AzToolsFramework/Platform/Linux/AzToolsFramework/API/PythonLoader_Linux.cpp index 76fa36a048..351cf69c15 100644 --- a/Code/Framework/AzToolsFramework/Platform/Linux/AzToolsFramework/API/PythonLoader_Linux.cpp +++ b/Code/Framework/AzToolsFramework/Platform/Linux/AzToolsFramework/API/PythonLoader_Linux.cpp @@ -15,10 +15,10 @@ namespace AzToolsFramework::EmbeddedPython PythonLoader::PythonLoader() { constexpr char libPythonName[] = "libpython3.7m.so.1.0"; - if (m_embeddedLibPythonHandle = dlopen(libPythonName, RTLD_NOW | RTLD_GLOBAL); - m_embeddedLibPythonHandle == nullptr) + m_embeddedLibPythonHandle = dlopen(libPythonName, RTLD_NOW | RTLD_GLOBAL); + if (m_embeddedLibPythonHandle == nullptr) { - char* err = dlerror(); + [[maybe_unused]] const char* err = dlerror(); AZ_Error("PythonLoader", false, "Failed to load %s with error: %s\n", libPythonName, err ? err : "Unknown Error"); } } diff --git a/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp b/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp index 4f4c3eb456..f4077e992b 100644 --- a/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp @@ -2781,4 +2781,196 @@ namespace UnitTest /////////////////////////////////////////////////////////////////////////////////////////////////////////////// } + TEST(HandleAccents, CurrentValidEntityIdBecomesHoveredWithNoSelectionAndUnstickySelect) + { + namespace azvi = AzToolsFramework::ViewportInteraction; + + const AZ::EntityId currentEntityId = AZ::EntityId(12345); + AZ::EntityId hoveredEntityEntityId; + + AzToolsFramework::HandleAccentsContext handleAccentsContext; + handleAccentsContext.m_ctrlHeld = false; + handleAccentsContext.m_hasSelectedEntities = false; + handleAccentsContext.m_usingBoxSelect = false; + handleAccentsContext.m_usingStickySelect = false; + + bool currentEntityIdAccentAdded = false; + AzToolsFramework::HandleAccents( + currentEntityId, hoveredEntityEntityId, handleAccentsContext, azvi::MouseButtonsFromButton(azvi::MouseButton::None), + [¤tEntityIdAccentAdded, currentEntityId](const AZ::EntityId entityId, const bool accent) + { + if (entityId == currentEntityId && accent) + { + currentEntityIdAccentAdded = true; + } + }); + + using ::testing::Eq; + using ::testing::IsTrue; + EXPECT_THAT(currentEntityId, Eq(hoveredEntityEntityId)); + EXPECT_THAT(currentEntityIdAccentAdded, IsTrue()); + } + + TEST(HandleAccents, CurrentValidEntityIdBecomesHoveredWithSelectionAndUnstickySelect) + { + namespace azvi = AzToolsFramework::ViewportInteraction; + + const AZ::EntityId currentEntityId = AZ::EntityId(12345); + AZ::EntityId hoveredEntityEntityId; + + AzToolsFramework::HandleAccentsContext handleAccentsContext; + handleAccentsContext.m_ctrlHeld = false; + handleAccentsContext.m_hasSelectedEntities = true; + handleAccentsContext.m_usingBoxSelect = false; + handleAccentsContext.m_usingStickySelect = false; + + bool currentEntityIdAccentAdded = false; + AzToolsFramework::HandleAccents( + currentEntityId, hoveredEntityEntityId, handleAccentsContext, azvi::MouseButtonsFromButton(azvi::MouseButton::None), + [¤tEntityIdAccentAdded, currentEntityId](const AZ::EntityId entityId, const bool accent) + { + if (entityId == currentEntityId && accent) + { + currentEntityIdAccentAdded = true; + } + }); + + using ::testing::Eq; + using ::testing::IsTrue; + EXPECT_THAT(currentEntityId, Eq(hoveredEntityEntityId)); + EXPECT_THAT(currentEntityIdAccentAdded, IsTrue()); + } + + TEST(HandleAccents, CurrentValidEntityIdDoesNotBecomeHoveredWithSelectionUnstickySelectAndInvalidButton) + { + namespace azvi = AzToolsFramework::ViewportInteraction; + + const AZ::EntityId currentEntityId = AZ::EntityId(12345); + AZ::EntityId hoveredEntityEntityId = AZ::EntityId(54321); + + AzToolsFramework::HandleAccentsContext handleAccentsContext; + handleAccentsContext.m_ctrlHeld = false; + handleAccentsContext.m_hasSelectedEntities = false; + handleAccentsContext.m_usingBoxSelect = false; + handleAccentsContext.m_usingStickySelect = false; + + bool hoveredEntityIdAccentRemoved = false; + AzToolsFramework::HandleAccents( + currentEntityId, hoveredEntityEntityId, handleAccentsContext, azvi::MouseButtonsFromButton(azvi::MouseButton::Middle), + [&hoveredEntityIdAccentRemoved, hoveredEntityEntityId](const AZ::EntityId entityId, const bool accent) + { + if (entityId == hoveredEntityEntityId && !accent) + { + hoveredEntityIdAccentRemoved = true; + } + }); + + using ::testing::Eq; + using ::testing::IsFalse; + using ::testing::IsTrue; + EXPECT_THAT(hoveredEntityEntityId.IsValid(), IsFalse()); + EXPECT_THAT(hoveredEntityIdAccentRemoved, IsTrue()); + } + + TEST(HandleAccents, CurrentValidEntityIdDoesNotBecomeHoveredWithSelectionUnstickySelectAndDoingBoxSelect) + { + namespace azvi = AzToolsFramework::ViewportInteraction; + + const AZ::EntityId currentEntityId = AZ::EntityId(12345); + AZ::EntityId hoveredEntityEntityId = AZ::EntityId(54321); + + AzToolsFramework::HandleAccentsContext handleAccentsContext; + handleAccentsContext.m_ctrlHeld = false; + handleAccentsContext.m_hasSelectedEntities = false; + handleAccentsContext.m_usingBoxSelect = true; + handleAccentsContext.m_usingStickySelect = false; + + bool hoveredEntityIdAccentRemoved = false; + AzToolsFramework::HandleAccents( + currentEntityId, hoveredEntityEntityId, handleAccentsContext, azvi::MouseButtonsFromButton(azvi::MouseButton::None), + [&hoveredEntityIdAccentRemoved, hoveredEntityEntityId](const AZ::EntityId entityId, const bool accent) + { + if (entityId == hoveredEntityEntityId && !accent) + { + hoveredEntityIdAccentRemoved = true; + } + }); + + using ::testing::Eq; + using ::testing::IsFalse; + using ::testing::IsTrue; + EXPECT_THAT(hoveredEntityEntityId.IsValid(), IsFalse()); + EXPECT_THAT(hoveredEntityIdAccentRemoved, IsTrue()); + } + + // mimics the mouse moving off of hovered entity onto a new entity with sticky select enabled + TEST(HandleAccents, CurrentValidEntityIdDoesNotBecomeHoveredWithSelectionAndStickySelect) + { + namespace azvi = AzToolsFramework::ViewportInteraction; + + const AZ::EntityId currentEntityId = AZ::EntityId(12345); + AZ::EntityId hoveredEntityEntityId = AZ::EntityId(54321); + + AzToolsFramework::HandleAccentsContext handleAccentsContext; + handleAccentsContext.m_ctrlHeld = false; + handleAccentsContext.m_hasSelectedEntities = true; + handleAccentsContext.m_usingBoxSelect = false; + handleAccentsContext.m_usingStickySelect = true; + + bool hoveredEntityIdAccentRemoved = false; + AzToolsFramework::HandleAccents( + currentEntityId, hoveredEntityEntityId, handleAccentsContext, azvi::MouseButtonsFromButton(azvi::MouseButton::None), + [&hoveredEntityIdAccentRemoved, hoveredEntityEntityId](const AZ::EntityId entityId, const bool accent) + { + if (entityId == hoveredEntityEntityId && !accent) + { + hoveredEntityIdAccentRemoved = true; + } + }); + + using ::testing::Eq; + using ::testing::IsFalse; + using ::testing::IsTrue; + EXPECT_THAT(hoveredEntityIdAccentRemoved, IsTrue()); + EXPECT_THAT(hoveredEntityEntityId.IsValid(), IsFalse()); + } + + TEST(HandleAccents, CurrentValidEntityIdDoesBecomeHoveredWithSelectionAndStickySelectAndCtrl) + { + namespace azvi = AzToolsFramework::ViewportInteraction; + + const AZ::EntityId currentEntityId = AZ::EntityId(12345); + AZ::EntityId hoveredEntityEntityId = AZ::EntityId(54321); + + AzToolsFramework::HandleAccentsContext handleAccentsContext; + handleAccentsContext.m_ctrlHeld = true; + handleAccentsContext.m_hasSelectedEntities = true; + handleAccentsContext.m_usingBoxSelect = false; + handleAccentsContext.m_usingStickySelect = true; + + bool currentEntityIdAccentAdded = false; + bool hoveredEntityIdAccentRemoved = false; + AzToolsFramework::HandleAccents( + currentEntityId, hoveredEntityEntityId, handleAccentsContext, azvi::MouseButtonsFromButton(azvi::MouseButton::None), + [&hoveredEntityIdAccentRemoved, ¤tEntityIdAccentAdded, currentEntityId, + hoveredEntityEntityId](const AZ::EntityId entityId, const bool accent) + { + if (entityId == currentEntityId && accent) + { + currentEntityIdAccentAdded = true; + } + + if (entityId == hoveredEntityEntityId && !accent) + { + hoveredEntityIdAccentRemoved = true; + } + }); + + using ::testing::Eq; + using ::testing::IsFalse; + using ::testing::IsTrue; + EXPECT_THAT(currentEntityIdAccentAdded, IsTrue()); + EXPECT_THAT(hoveredEntityIdAccentRemoved, IsTrue()); + EXPECT_THAT(hoveredEntityEntityId, Eq(AZ::EntityId(12345))); + } } // namespace UnitTest diff --git a/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.cpp b/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.cpp index b873f30c6d..4e121f149c 100644 --- a/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.cpp +++ b/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.cpp @@ -49,18 +49,17 @@ namespace rlimit limit; if (getrlimit(resource, &limit) != 0) { - AZ_Error("Launcher", false, "[ERROR] Failed to get limit for resource %d. Error: %s", resource, strerror(errno)); - return false; + AZ_Warning("Launcher", false, "[WARNING] Unable to get limit for resource %d. Error: %s", resource, strerror(errno)); } if (updateLimit(limit)) { if (setrlimit(resource, &limit) != 0) { - AZ_Error("Launcher", false, "[ERROR] Failed to update resource limit for resource %d. Error: %s", resource, strerror(errno)); - return false; + AZ_Warning("Launcher", false, "[WARNING] Unable to update resource limit for resource %d. Error: %s", resource, strerror(errno)); } } + return true; } } diff --git a/Code/Tools/AssetProcessor/assetprocessor_static_files.cmake b/Code/Tools/AssetProcessor/assetprocessor_static_files.cmake index 591de156f3..400a3f7ba5 100644 --- a/Code/Tools/AssetProcessor/assetprocessor_static_files.cmake +++ b/Code/Tools/AssetProcessor/assetprocessor_static_files.cmake @@ -103,6 +103,8 @@ set(FILES native/utilities/PlatformConfiguration.cpp native/utilities/PlatformConfiguration.h native/utilities/PotentialDependencies.h + native/utilities/StatsCapture.cpp + native/utilities/StatsCapture.h native/utilities/SpecializedDependencyScanner.h native/utilities/ThreadHelper.cpp native/utilities/ThreadHelper.h diff --git a/Code/Tools/AssetProcessor/assetprocessor_test_files.cmake b/Code/Tools/AssetProcessor/assetprocessor_test_files.cmake index 6aebc8bc25..3a336ce97b 100644 --- a/Code/Tools/AssetProcessor/assetprocessor_test_files.cmake +++ b/Code/Tools/AssetProcessor/assetprocessor_test_files.cmake @@ -36,6 +36,7 @@ set(FILES native/tests/platformconfiguration/platformconfigurationtests.h native/tests/utilities/JobModelTest.cpp native/tests/utilities/JobModelTest.h + native/tests/utilities/StatsCaptureTest.cpp native/tests/AssetCatalog/AssetCatalogUnitTests.cpp native/tests/assetscanner/AssetScannerTests.h native/tests/assetscanner/AssetScannerTests.cpp diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.cpp b/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.cpp index 05fe760bcb..de0f919a14 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.cpp @@ -25,6 +25,7 @@ #include #include +#include #include "AssetRequestHandler.h" @@ -123,6 +124,9 @@ namespace AssetProcessor { if (status == AssetProcessor::AssetScanningStatus::Started) { + // capture scanning stats: + AssetProcessor::StatsCapture::BeginCaptureStat("AssetScanning"); + // Ensure that the source file list is populated before a scan begins m_sourceFilesInDatabase.clear(); m_fileModTimes.clear(); @@ -176,6 +180,8 @@ namespace AssetProcessor (status == AssetProcessor::AssetScanningStatus::Stopped)) { m_isCurrentlyScanning = false; + AssetProcessor::StatsCapture::EndCaptureStat("AssetScanning"); + // we cannot invoke this immediately - the scanner might be done, but we aren't actually ready until we've processed all remaining messages: QMetaObject::invokeMethod(this, "CheckMissingFiles", Qt::QueuedConnection); } @@ -209,13 +215,24 @@ namespace AssetProcessor } else { + QString statKey = QString("ProcessJob,%1,%2,%3").arg(jobEntry.m_databaseSourceName).arg(jobEntry.m_jobKey).arg(jobEntry.m_platformInfo.m_identifier.c_str()); + if (status == JobStatus::InProgress) { //update to in progress status m_jobRunKeyToJobInfoMap[jobEntry.m_jobRunKey].m_status = JobStatus::InProgress; + // stats tracking. Start accumulating time. + AssetProcessor::StatsCapture::BeginCaptureStat(statKey.toUtf8().constData()); + } else //if failed or succeeded remove from the map { + // note that sometimes this gets called twice, once by the RCJobs thread and once by the AP itself, + // because sometimes jobs take a short cut from "started" -> "failed" or "started" -> "complete + // without going thru the RC. + // as such, all the code in this block should be crafted to work regardless of whether its double called. + AssetProcessor::StatsCapture::EndCaptureStat(statKey.toUtf8().constData()); + m_jobRunKeyToJobInfoMap.erase(jobEntry.m_jobRunKey); Q_EMIT SourceFinished(sourceUUID, legacySourceUUID); Q_EMIT JobComplete(jobEntry, status); @@ -3355,8 +3372,13 @@ namespace AssetProcessor AZStd::string logFileName = AssetUtilities::ComputeJobLogFileName(createJobsRequest); { AssetUtilities::JobLogTraceListener jobLogTraceListener(logFileName, runKey, true); + // track the time it takes to createJobs. We can perform analysis later to present it by extension and other stats. + QString statKey = QString("CreateJobs,%1,%2").arg(actualRelativePath).arg(builderInfo.m_name.c_str()); + AssetProcessor::StatsCapture::BeginCaptureStat(statKey.toUtf8().constData()); builderInfo.m_createJobFunction(createJobsRequest, createJobsResponse); + AssetProcessor::StatsCapture::EndCaptureStat(statKey.toUtf8().constData()); } + AssetProcessor::SetThreadLocalJobId(0); bool isBuilderMissingFingerprint = (createJobsResponse.m_result == AssetBuilderSDK::CreateJobsResultCode::Success @@ -4839,5 +4861,7 @@ namespace AssetProcessor } return filesFound; } + + } // namespace AssetProcessor diff --git a/Code/Tools/AssetProcessor/native/tests/utilities/StatsCaptureTest.cpp b/Code/Tools/AssetProcessor/native/tests/utilities/StatsCaptureTest.cpp new file mode 100644 index 0000000000..ed7177e841 --- /dev/null +++ b/Code/Tools/AssetProcessor/native/tests/utilities/StatsCaptureTest.cpp @@ -0,0 +1,200 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include +#include +#include +#include +#include +#include + +// the simple stats capture system has a trivial interface and only writes to printf. +// So the simplest tests we can do is make sure it only asserts when it should +// and doesn't assert in cases when it shouldn't, and that the stats are reasonable +// in printf format. + +namespace AssetProcessor +{ +// Its okay to talk to this system when unintialized, you can gain some perf +// by not intializing it at all +TEST_F(AssetProcessorTest, StatsCaptureTest_UninitializedSystemDoesNotAssert) +{ + AssetProcessor::StatsCapture::BeginCaptureStat("Test"); + AssetProcessor::StatsCapture::EndCaptureStat("Test"); + AssetProcessor::StatsCapture::Dump(); + AssetProcessor::StatsCapture::Shutdown(); +} + +// Double-intiailize is an error +TEST_F(AssetProcessorTest, StatsCaptureTest_DoubleInitializeIsAnAssert) +{ + m_errorAbsorber->Clear(); + + AssetProcessor::StatsCapture::Initialize(); + AssetProcessor::StatsCapture::Initialize(); + + EXPECT_EQ(m_errorAbsorber->m_numErrorsAbsorbed, 0); + EXPECT_EQ(m_errorAbsorber->m_numAssertsAbsorbed, 1); // not allowed to assert on this + + AssetProcessor::StatsCapture::BeginCaptureStat("Test"); + AssetProcessor::StatsCapture::Shutdown(); +} + +class StatsCaptureOutputTest : public AssetProcessorTest, public AZ::Debug::TraceMessageBus::Handler +{ +public: + void SetUp() override + { + AssetProcessorTest::SetUp(); + AssetProcessor::StatsCapture::Initialize(); + } + + // dump but also capture the dump as a vector of lines: + void Dump() + { + AZ::Debug::TraceMessageBus::Handler::BusConnect(); + AssetProcessor::StatsCapture::Dump(); + AZ::Debug::TraceMessageBus::Handler::BusDisconnect(); + } + + virtual bool OnPrintf(const char* /*window*/, const char* message) + { + m_gatheredMessages.emplace_back(message); + AZ::StringFunc::TrimWhiteSpace(m_gatheredMessages.back(), true, true); + return false; + } + + void TearDown() override + { + m_gatheredMessages = {}; + + AssetProcessor::StatsCapture::Shutdown(); + AssetProcessorTest::TearDown(); + } + + AZStd::vector m_gatheredMessages; +}; + +// turning off machine and human readable mode, should not dump anything. +TEST_F(StatsCaptureOutputTest, StatsCaptureTest_DisabledByRegset_DumpsNothing) +{ + auto registry = AZ::SettingsRegistry::Get(); + ASSERT_NE(registry, nullptr); + registry->Set("/Amazon/AssetProcessor/Settings/Stats/HumanReadable", false); + registry->Set("/Amazon/AssetProcessor/Settings/Stats/MachineReadable", false); + AssetProcessor::StatsCapture::BeginCaptureStat("Test"); + AssetProcessor::StatsCapture::EndCaptureStat("Test"); + Dump(); + EXPECT_EQ(m_gatheredMessages.size(), 0); +} + +// turning on Human Readable, turn off Machine Readable, should not output any machine readable stats. +TEST_F(StatsCaptureOutputTest, StatsCaptureTest_HumanReadableOnly_DumpsNoMachineReadable) +{ + auto registry = AZ::SettingsRegistry::Get(); + ASSERT_NE(registry, nullptr); + registry->Set("/Amazon/AssetProcessor/Settings/Stats/HumanReadable", true); + registry->Set("/Amazon/AssetProcessor/Settings/Stats/MachineReadable", false); + AssetProcessor::StatsCapture::BeginCaptureStat("Test"); + AssetProcessor::StatsCapture::EndCaptureStat("Test"); + Dump(); + EXPECT_GT(m_gatheredMessages.size(), 0); + for (const auto& message : m_gatheredMessages) + { + // we expect to see ZERO "Machine Readable" lines + EXPECT_FALSE(message.contains("MachineReadableStat:")) << "Found unexpected line in output: " << message.c_str(); + } +} + +// Turn on Machine Readable, Turn off Human Readable, ensure only Machine Readable stats emitted. +TEST_F(StatsCaptureOutputTest, StatsCaptureTest_MachineReadableOnly_DumpsNoHumanReadable) +{ + auto registry = AZ::SettingsRegistry::Get(); + ASSERT_NE(registry, nullptr); + registry->Set("/Amazon/AssetProcessor/Settings/Stats/HumanReadable", false); + registry->Set("/Amazon/AssetProcessor/Settings/Stats/MachineReadable", true); + AssetProcessor::StatsCapture::BeginCaptureStat("Test"); + AssetProcessor::StatsCapture::EndCaptureStat("Test"); + Dump(); + for (const auto& message : m_gatheredMessages) + { + // we expect to see ONLY "Machine Readable" lines + EXPECT_TRUE(message.contains("MachineReadableStat:")) << "Found unexpected line in output: " << message.c_str(); + } + EXPECT_GT(m_gatheredMessages.size(), 0); +} + + +// The interface for StatsCapture just captures and then dumps. +// For us to test this, we thus have to capture and parse the dump output. +TEST_F(StatsCaptureOutputTest, StatsCaptureTest_Sanity) +{ + auto registry = AZ::SettingsRegistry::Get(); + ASSERT_NE(registry, nullptr); + + // Make it output in "machine raadable" format so that it is simpler to parse. + registry->Set("/Amazon/AssetProcessor/Settings/Stats/HumanReadable", false); + registry->Set("/Amazon/AssetProcessor/Settings/Stats/MachineReadable", true); + AssetProcessor::StatsCapture::BeginCaptureStat("CreateJobs,foo,mybuilder"); + AssetProcessor::StatsCapture::EndCaptureStat("CreateJobs,foo,mybuilder"); + + // Intentionally not using sleeps in this test. It means that the + // captured duration will be likely 0 but its not worth it to slow down tests. + // If the durations end up 0 its going to be extremely noticable in day-to-day use. + AssetProcessor::StatsCapture::BeginCaptureStat("CreateJobs,foo,mybuilder"); + AssetProcessor::StatsCapture::EndCaptureStat("CreateJobs,foo,mybuilder"); + + // for the second stat, we'll double capture and double end, in order to test debounce + AssetProcessor::StatsCapture::BeginCaptureStat("CreateJobs,foo2,mybuilder"); + AssetProcessor::StatsCapture::BeginCaptureStat("CreateJobs,foo2,mybuilder"); + AssetProcessor::StatsCapture::EndCaptureStat("CreateJobs,foo2,mybuilder2"); + AssetProcessor::StatsCapture::EndCaptureStat("CreateJobs,foo2,mybuilder2"); + + m_gatheredMessages.clear(); + Dump(); + EXPECT_GT(m_gatheredMessages.size(), 0); + + // We'll parse the machine readable stat lines here and make sure that the following is true + // mybuilder appears + // mybuilder appears only once but count is 2 + bool foundFoo = false; + bool foundFoo2 = false; + + for (const auto& stat : m_gatheredMessages) + { + if (stat.contains("MachineReadableStat:")) + { + AZStd::vector tokens; + AZ::StringFunc::Tokenize(stat, tokens, ":", false, false); + ASSERT_EQ(tokens.size(), 5); // should be "MachineReadableStat:time:count:average:name) + const auto& countData = tokens[2]; + const auto& nameData = tokens[4]; + + if (AZ::StringFunc::Equal(nameData, "CreateJobs,foo,mybuilder")) + { + EXPECT_FALSE(foundFoo); // should only find one of these + foundFoo = true; + EXPECT_STREQ(countData.c_str(), "2"); + } + + if (AZ::StringFunc::Equal(nameData, "CreateJobs,foo2,mybuilder2")) + { + EXPECT_FALSE(foundFoo2); // should only find one of these + foundFoo2 = true; + EXPECT_STREQ(countData.c_str(), "1"); + } + } + } + + EXPECT_TRUE(foundFoo) << "The expected token CreateJobs,foo,mybuilder did not appear in the output."; + EXPECT_TRUE(foundFoo2) << "The expected CreateJobs.foo2.mybuilder2 did not appear in the output"; +} + +} + diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp index a024ce6c7a..7a14f158d6 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp @@ -16,7 +16,8 @@ #include #include -#include "native/resourcecompiler/RCBuilder.h" +#include +#include #include #include @@ -200,6 +201,10 @@ ApplicationManager::~ApplicationManager() delete m_appDependencies[idx]; } + // end stats capture (dump and shutdown) + AssetProcessor::StatsCapture::Dump(); + AssetProcessor::StatsCapture::Shutdown(); + qInstallMessageHandler(nullptr); //deleting QCoreApplication/QApplication @@ -571,6 +576,8 @@ bool ApplicationManager::StartAZFramework() bool ApplicationManager::ActivateModules() { + AssetProcessor::StatsCapture::BeginCaptureStat("LoadingModules"); + // we load the editor xml for our modules since it contains the list of gems we need for tools to function (not just runtime) connect(&m_frameworkApp, &AssetProcessorAZApplication::AssetProcessorStatus, this, [this](AssetProcessor::AssetProcessorStatusEntry entry) @@ -587,6 +594,8 @@ bool ApplicationManager::ActivateModules() } m_frameworkApp.LoadDynamicModules(); + + AssetProcessor::StatsCapture::EndCaptureStat("LoadingModules"); return true; } @@ -618,6 +627,9 @@ ApplicationManager::BeforeRunStatus ApplicationManager::BeforeRun() return ApplicationManager::BeforeRunStatus::Status_Failure; } + // enable stats capture from this point on + AssetProcessor::StatsCapture::Initialize(); + return ApplicationManager::BeforeRunStatus::Status_Success; } diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp index a9b3e1cbfb..499e5fe4f7 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp @@ -1173,6 +1173,7 @@ void ApplicationManagerBase::InitBuilderManager() { m_builderManager->ConnectionLost(connId); }); + } void ApplicationManagerBase::ShutdownBuilderManager() diff --git a/Code/Tools/AssetProcessor/native/utilities/StatsCapture.cpp b/Code/Tools/AssetProcessor/native/utilities/StatsCapture.cpp new file mode 100644 index 0000000000..1174e2500c --- /dev/null +++ b/Code/Tools/AssetProcessor/native/utilities/StatsCapture.cpp @@ -0,0 +1,394 @@ + /* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +namespace AssetProcessor +{ + namespace StatsCapture + { + // This class captures stats by storing them in a map of type + // [name of stat] -> Stat struct + // It can then analyze these stats and produce more stats from the original + // Captures, before dumping. + class StatsCaptureImpl final + { + public: + AZ_CLASS_ALLOCATOR(StatsCaptureImpl, AZ::SystemAllocator, 0); + + void BeginCaptureStat(AZStd::string_view statName); + void EndCaptureStat(AZStd::string_view statName); + void Dump(); + private: + using timepoint = AZStd::chrono::high_resolution_clock::time_point; + using duration = AZStd::chrono::milliseconds; + struct StatsEntry + { + duration m_cumulativeTime = {}; // The total amount of time spent on this. + timepoint m_operationStartTime = {}; // Async tracking - the last time stamp an operation started. + int64_t m_operationCount = 0; // In case there's more than one sample. Used to calc average. + }; + + AZStd::unordered_map m_stats; + bool m_dumpMachineReadableStats = false; + bool m_dumpHumanReadableStats = true; + + // Make a friendly time string of the format nnHnnMhhS.xxxms + AZStd::string FormatDuration(const duration& duration) + { + int64_t milliseconds = duration.count(); + constexpr int64_t millisecondsInASecond = 1000; + constexpr int64_t millisecondsInAMinute = millisecondsInASecond * 60; + constexpr int64_t millisecondsInAnHour = millisecondsInAMinute * 60; + + int64_t hours = milliseconds / millisecondsInAnHour; + milliseconds -= hours * millisecondsInAnHour; + + int64_t minutes = milliseconds / millisecondsInAMinute; + milliseconds -= minutes * millisecondsInAMinute; + + int64_t seconds = milliseconds / millisecondsInASecond; + milliseconds -= seconds * millisecondsInASecond; + + // omit the sections which dont make sense for readability + if (hours) + { + return AZStd::string::format("%02" PRId64 "h%02" PRId64 "m%02" PRId64 "s%03" PRId64 "ms" , hours, minutes, seconds, milliseconds); + } + else if (minutes) + { + return AZStd::string::format(" %02" PRId64 "m%02" PRId64 "s%03" PRId64 "ms", minutes, seconds, milliseconds); + } + else if (seconds) + { + return AZStd::string::format(" %02" PRId64 "s%03" PRId64 "ms", seconds, milliseconds); + } + + return AZStd::string::format(" %03" PRId64 "ms", milliseconds); + } + + // Prints out a single stat. + void PrintStat([[maybe_unused]] const char* name, duration milliseconds, int64_t count) + { + // note that name may be unused as it only appears in Trace macros, which are + // stripped out in release builds. + if (count <= 1) + { + count = 1; + } + + duration average(static_cast(static_cast(milliseconds.count()) / static_cast(count))); + + if (m_dumpHumanReadableStats) + { + if (count > 1) + { + AZ_TracePrintf(AssetProcessor::ConsoleChannel, " Time: %s, Count: %4" PRId64 ", Average: %s, EventName: %s\n", + FormatDuration(milliseconds).c_str(), + count, + FormatDuration(average).c_str(), + name); + } + else + { + AZ_TracePrintf(AssetProcessor::ConsoleChannel, " Time: %s, EventName: %s\n", + FormatDuration(milliseconds).c_str(), + name); + } + } + if (m_dumpMachineReadableStats) + { + // machine Readable mode prints raw milliseconds and uses a CSV-like format + // note that the stat itself may contain commas, so we dont acutally separate with comma + // instead we separate with : + // and each "interesting line" is 'MachineReadableStat:milliseconds:count:average:name' + AZ_TracePrintf(AssetProcessor::ConsoleChannel, "MachineReadableStat:%" PRId64 ":%" PRId64 ":%" PRId64 ":%s\n", + milliseconds.count(), + count, + count > 1 ? average.count() : milliseconds.count(), + name); + } + } + + // calls PrintStat on each element in the vector. + void PrintStatsArray(AZStd::vector& keys, int maxToPrint, const char* header) + { + if ((m_dumpHumanReadableStats)&&(header)) + { + AZ_TracePrintf(AssetProcessor::ConsoleChannel,"Top %i %s\n", maxToPrint, header); + } + + auto sortByTimeDescending = [&](const AZStd::string& s1, const AZStd::string& s2) + { + return this->m_stats[s1].m_cumulativeTime > this->m_stats[s2].m_cumulativeTime; + }; + + AZStd::sort(keys.begin(), keys.end(), sortByTimeDescending); + + for (int idx = 0; idx < maxToPrint; ++idx) + { + if (idx < keys.size()) + { + PrintStat(keys[idx].c_str(), m_stats[keys[idx]].m_cumulativeTime, m_stats[keys[idx]].m_operationCount); + } + } + } + }; + + + void StatsCaptureImpl::BeginCaptureStat(AZStd::string_view statName) + { + StatsEntry& existingStat = m_stats[statName]; + if (existingStat.m_operationStartTime != timepoint()) + { + // prevent double 'Begins' + return; + } + existingStat.m_operationStartTime = AZStd::chrono::high_resolution_clock::now(); + } + + void StatsCaptureImpl::EndCaptureStat(AZStd::string_view statName) + { + StatsEntry& existingStat = m_stats[statName]; + if (existingStat.m_operationStartTime != timepoint()) + { + existingStat.m_cumulativeTime = AZStd::chrono::high_resolution_clock::now() - existingStat.m_operationStartTime; + existingStat.m_operationCount = existingStat.m_operationCount + 1; + existingStat.m_operationStartTime = timepoint(); // reset the start time so that double 'Ends' are ignored. + } + } + + void StatsCaptureImpl::Dump() + { + timepoint startTimeStamp = AZStd::chrono::high_resolution_clock::now(); + + auto settingsRegistry = AZ::SettingsRegistry::Get(); + + int maxCumulativeStats = 5; // default max cumulative stats to show + int maxIndividualStats = 5; // default max individual files to show + + if (settingsRegistry) + { + AZ::u64 cumulativeStats = static_cast(maxCumulativeStats); + AZ::u64 individualStats = static_cast(maxIndividualStats); + settingsRegistry->Get(m_dumpHumanReadableStats, "/Amazon/AssetProcessor/Settings/Stats/HumanReadable"); + settingsRegistry->Get(m_dumpMachineReadableStats, "/Amazon/AssetProcessor/Settings/Stats/MachineReadable"); + settingsRegistry->Get(cumulativeStats, "/Amazon/AssetProcessor/Settings/Stats/MaxCumulativeStats"); + settingsRegistry->Get(individualStats, "/Amazon/AssetProcessor/Settings/Stats/MaxIndividualStats"); + maxCumulativeStats = static_cast(cumulativeStats); + maxIndividualStats = static_cast(individualStats); + } + + if ((!m_dumpHumanReadableStats)&&(!m_dumpMachineReadableStats)) + { + return; + } + + AZStd::vector allCreateJobs; // individual + AZStd::vector allCreateJobsByBuilder; // bucketed by builder + AZStd::vector allProcessJobs; // individual + AZStd::vector allProcessJobsByPlatform; // bucketed by platform + AZStd::vector allProcessJobsByJobKey; // bucketed by type of job (job key) + AZStd::vector allHashFiles; + + // capture only existing keys as we will be expanding the stats + // this approach avoids mutating an iterator. + AZStd::vector statKeys; + for (const auto& element : m_stats) + { + statKeys.push_back(element.first); + } + + for (const AZStd::string& statKey : statKeys) + { + const StatsEntry& statistic = m_stats[statKey]; + // Createjobs stats encode like (CreateJobs,sourcefilepath,builderid) + if (AZ::StringFunc::StartsWith(statKey, "CreateJobs,", true)) + { + allCreateJobs.push_back(statKey); + AZStd::vector tokens; + AZ::StringFunc::Tokenize(statKey, tokens, ",", false, false); + + // look up the builder so you can get its name: + AZStd::string_view builderName = tokens[2]; + + // synthesize a stat to track per-builder createjobs times: + { + AZStd::string newStatKey = AZStd::string::format("CreateJobsByBuilder,%.*s", AZ_STRING_ARG(builderName)); + + auto insertion = m_stats.insert(newStatKey); + StatsEntry& statToSynth = insertion.first->second; + statToSynth.m_cumulativeTime += statistic.m_cumulativeTime; + statToSynth.m_operationCount += statistic.m_operationCount; + if (insertion.second) + { + allCreateJobsByBuilder.push_back(newStatKey); + } + } + // synthesize a stat to track total createjobs times: + { + StatsEntry& statToSynth = m_stats["CreateJobsTotal"]; + statToSynth.m_cumulativeTime += statistic.m_cumulativeTime; + statToSynth.m_operationCount += statistic.m_operationCount; + } + } + else if (AZ::StringFunc::StartsWith(statKey, "ProcessJob,", true)) + { + allProcessJobs.push_back(statKey); + // processjob has the format ProcessJob,sourcename,jobkey,platformname + AZStd::vector tokens; + AZ::StringFunc::Tokenize(statKey, tokens, ",", false, false); + AZStd::string_view jobKey = tokens[2]; + AZStd::string_view platformName = tokens[3]; + + // synthesize a stat to record process time accumulated by job key platform + { + AZStd::string newStatKey = AZStd::string::format("ProcessJobsByPlatform,%.*s", AZ_STRING_ARG(platformName)); + auto insertion = m_stats.insert(newStatKey); + StatsEntry& statToSynth = insertion.first->second; + statToSynth.m_cumulativeTime += statistic.m_cumulativeTime; + statToSynth.m_operationCount += statistic.m_operationCount; + if (insertion.second) + { + allProcessJobsByPlatform.push_back(newStatKey); + } + } + + // synthesize a stat to record process time accumulated job key total across all platforms + { + AZStd::string newStatKey = AZStd::string::format("ProcessJobsByJobKey,%.*s", AZ_STRING_ARG(jobKey)); + auto insertion = m_stats.insert(newStatKey); + StatsEntry& statToSynth = insertion.first->second; + statToSynth.m_cumulativeTime += statistic.m_cumulativeTime; + statToSynth.m_operationCount += statistic.m_operationCount; + if (insertion.second) + { + allProcessJobsByJobKey.push_back(newStatKey); + } + } + // synthesize a stat to track total processjob times: + { + StatsEntry& statToSynth = m_stats["ProcessJobsTotal"]; + statToSynth.m_cumulativeTime += statistic.m_cumulativeTime; + statToSynth.m_operationCount += statistic.m_operationCount; + } + } + else if (AZ::StringFunc::StartsWith(statKey, "HashFile,", true)) + { + allHashFiles.push_back(statKey); + // processjob has the format ProcessJob,sourcename,jobkey,platformname + // synthesize a stat to track total hash times: + StatsEntry& statToSynth = m_stats["HashFileTotal"]; + statToSynth.m_cumulativeTime += statistic.m_cumulativeTime; + statToSynth.m_operationCount += statistic.m_operationCount; + } + } + + StatsEntry& gemLoadStat = m_stats["LoadingModules"]; + PrintStat("LoadingGems", gemLoadStat.m_cumulativeTime, 1); + // analysis-related stats + + StatsEntry& totalScanTime = m_stats["AssetScanning"]; + PrintStat("AssetScanning", totalScanTime.m_cumulativeTime, totalScanTime.m_operationCount); + StatsEntry& totalHashTime = m_stats["HashFileTotal"]; + PrintStat("HashFileTotal", totalHashTime.m_cumulativeTime, totalHashTime.m_operationCount); + PrintStatsArray(allHashFiles, maxIndividualStats, "longest individual file hashes:"); + + // CreateJobs stats + StatsEntry& totalCreateJobs = m_stats["CreateJobsTotal"]; + if (totalCreateJobs.m_operationCount) + { + PrintStat("CreateJobsTotal", totalCreateJobs.m_cumulativeTime, totalCreateJobs.m_operationCount); + PrintStatsArray(allCreateJobs, maxIndividualStats, "longest individual CreateJobs"); + PrintStatsArray(allCreateJobsByBuilder, maxCumulativeStats, "longest CreateJobs By builder"); + } + + // ProcessJobs stats + StatsEntry& totalProcessJobs = m_stats["ProcessJobsTotal"]; + if (totalProcessJobs.m_operationCount) + { + PrintStat("ProcessJobsTotal", totalProcessJobs.m_cumulativeTime, totalProcessJobs.m_operationCount); + PrintStatsArray(allProcessJobs, maxIndividualStats, "longest individual ProcessJob"); + PrintStatsArray(allProcessJobsByJobKey, maxCumulativeStats, "cumulative time spent in ProcessJob by JobKey"); + PrintStatsArray(allProcessJobsByPlatform, maxCumulativeStats, "cumulative time spent in ProcessJob by Platform"); + } + duration costToGenerateStats = AZStd::chrono::high_resolution_clock::now() - startTimeStamp; + PrintStat("ComputeStatsTime", costToGenerateStats, 1); + } + + // Public interface: + static StatsCaptureImpl* g_instance = nullptr; + + //! call this one time before capturing stats. + void Initialize() + { + if (g_instance) + { + AZ_Assert(false, "An instance of StatsCaptureImpl already exists."); + return; + } + g_instance = aznew StatsCaptureImpl(); + } + + //! Call this one time as part of shutting down. + //! note that while it is an error to double-initialize, it is intentionally + //! not an error to call any other function when uninitialized, allowing this system + //! to essentially be "turned off" just by not initializing it in the first place. + void Shutdown() + { + if (g_instance) + { + delete g_instance; + g_instance = nullptr; + } + } + + //! Start the clock running for a particular stat name. + void BeginCaptureStat(AZStd::string_view statName) + { + if (g_instance) + { + g_instance->BeginCaptureStat(statName); + } + } + + //! Stop the clock running for a particular stat name. + void EndCaptureStat(AZStd::string_view statName) + { + if (g_instance) + { + g_instance->EndCaptureStat(statName); + } + } + + //! Do additional processing and then write the cumulative stats to log. + //! Note that since this is an AP-specific system, the analysis done in the dump function + //! is going to make a lot of assumptions about the way the data is encoded. + void Dump() + { + if (g_instance) + { + g_instance->Dump(); + } + } + } +} diff --git a/Code/Tools/AssetProcessor/native/utilities/StatsCapture.h b/Code/Tools/AssetProcessor/native/utilities/StatsCapture.h new file mode 100644 index 0000000000..dd3c9abccf --- /dev/null +++ b/Code/Tools/AssetProcessor/native/utilities/StatsCapture.h @@ -0,0 +1,40 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project. + * For complete copyright and license terms please see the LICENSE at the root of this distribution. + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +// This is an AssetProcessor-only stats capture system. Its kept out-of-band +// from the rest of the Asset Processor systems so that it can avoid interfering +// with the rest of the processing decision making and other parts of AssetProcessor. +// This is not meant to be used anywhere except in AssetProcessor. + +#pragma once + +#include + +namespace AssetProcessor +{ + namespace StatsCapture + { + //! call this one time before capturing stats. + void Initialize(); + + //! Call this one time as part of shutting down. + void Shutdown(); + + //! Start the clock running for a particular stat name. + void BeginCaptureStat(AZStd::string_view statName); + + //! Stop the clock running for a particular stat name. + void EndCaptureStat(AZStd::string_view statName); + + //! Do additional processing and then write the cumulative stats to log. + //! Note that since this is an AP-specific system, the analysis done in the dump function + //! is going to make a lot of assumptions about the way the data is encoded. + void Dump(); + } + +} diff --git a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp index 340f5343bd..ae70ee7fe5 100644 --- a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp @@ -10,9 +10,10 @@ #include #include -#include "native/utilities/PlatformConfiguration.h" -#include "native/AssetManager/FileStateCache.h" -#include "native/AssetDatabase/AssetDatabase.h" +#include +#include +#include +#include #include #include #include diff --git a/Gems/AWSCore/Code/CMakeLists.txt b/Gems/AWSCore/Code/CMakeLists.txt index 7559f4720b..624f61d88a 100644 --- a/Gems/AWSCore/Code/CMakeLists.txt +++ b/Gems/AWSCore/Code/CMakeLists.txt @@ -154,10 +154,20 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) AZ::AWSNativeSDKInit Gem::AWSCore.Static ) + ly_add_googletest( NAME Gem::AWSCore.Tests ) + ly_add_target_files( + TARGETS + AWSCore.Tests + FILES + ${CMAKE_CURRENT_SOURCE_DIR}/Tools/ResourceMappingTool/resource_mapping_schema.json + OUTPUT_SUBDIRECTORY + Gems/AWSCore + ) + if (PAL_TRAIT_BUILD_HOST_TOOLS) ly_add_target( NAME AWSCore.Editor.Tests ${PAL_TRAIT_TEST_TARGET_TYPE} @@ -189,4 +199,13 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) endif() endif() +ly_add_target_files( + TARGETS + AWSCore + FILES + ${CMAKE_CURRENT_SOURCE_DIR}/Tools/ResourceMappingTool/resource_mapping_schema.json + OUTPUT_SUBDIRECTORY + Gems/AWSCore +) + ly_install_directory(DIRECTORIES Tools/ResourceMappingTool) diff --git a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h index a3d18c1ea1..e9d063eb5f 100644 --- a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h +++ b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h @@ -22,63 +22,6 @@ namespace AWSCore static constexpr const char ResourceMappingTypeKeyName[] = "Type"; static constexpr const char ResourceMappingVersionKeyName[] = "Version"; - // TODO: move this into an independent file under AWSCore gem, if resource mapping tool can reuse it - static constexpr const char ResourceMappingJsonSchema[] = - R"({ - "$schema": "http://json-schema.org/draft-04/schema", - "type": "object", - "title": "The AWS Resource Mapping Root schema", - "required": ["AWSResourceMappings", "AccountId", "Region", "Version"], - "properties": { - "AWSResourceMappings": { - "type": "object", - "title": "The AWSResourceMappings schema", - "patternProperties": { - "^.+$": { - "type": "object", - "title": "The AWS Resource Entry schema", - "required": ["Type", "Name/ID"], - "properties": { - "Type": { - "$ref": "#/NonEmptyString" - }, - "Name/ID": { - "$ref": "#/NonEmptyString" - }, - "AccountId": { - "$ref": "#/AccountIdString" - }, - "Region": { - "$ref": "#/RegionString" - } - } - } - }, - "additionalProperties": false - }, - "AccountId": { - "$ref": "#/AccountIdString" - }, - "Region": { - "$ref": "#/RegionString" - }, - "Version": { - "pattern": "^[0-9]{1}.[0-9]{1}.[0-9]{1}$" - } - }, - "AccountIdString": { - "type": "string", - "pattern": "^[0-9]{12}$|EMPTY|^$" - }, - "NonEmptyString": { - "type": "string", - "minLength": 1 - }, - "RegionString": { - "type": "string", - "pattern": "^[a-z]{2}-[a-z]{4,9}-[0-9]{1}$" - }, - "additionalProperties": false -})"; - + static constexpr const char ResourceMapppingJsonSchemaFilePath[] = + "Gems/AWSCore/resource_mapping_schema.json"; } // namespace AWSCore diff --git a/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp b/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp index faec07b19e..d6a3912523 100644 --- a/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp +++ b/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include @@ -244,14 +245,16 @@ namespace AWSCore bool AWSResourceMappingManager::ValidateJsonDocumentAgainstSchema(const rapidjson::Document& jsonDocument) { - rapidjson::Document jsonSchemaDocument; - if (jsonSchemaDocument.Parse(ResourceMappingJsonSchema).HasParseError()) + AZ::IO::Path executablePath = AZ::IO::PathView(AZ::Utils::GetExecutableDirectory()); + AZ::IO::Path jsonSchemaPath = (executablePath / ResourceMapppingJsonSchemaFilePath).LexicallyNormal(); + AZ::Outcome readJsonOutcome = AZ::JsonSerializationUtils::ReadJsonFile(jsonSchemaPath.c_str()); + if (!readJsonOutcome.IsSuccess() || readJsonOutcome.TakeValue().ObjectEmpty()) { AZ_Error(AWSResourceMappingManagerName, false, ResourceMappingFileInvalidSchemaErrorMessage); return false; } - auto jsonSchema = rapidjson::SchemaDocument(jsonSchemaDocument); + auto jsonSchema = rapidjson::SchemaDocument(readJsonOutcome.TakeValue()); rapidjson::SchemaValidator validator(jsonSchema); if (!jsonDocument.Accept(validator)) diff --git a/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp b/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp index 81ea166848..fd37e6e228 100644 --- a/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp +++ b/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp @@ -121,7 +121,7 @@ public: void SetUp() override { - AWSCoreFixture::SetUp(); + AWSCoreFixture::SetUpFixture(false); m_normalizedSourceProjectFolder = AZStd::string::format("%s/%s%s/", AZ::Test::GetCurrentExecutablePath().c_str(), "AWSResourceMappingManager", AZ::Uuid::CreateRandom().ToString(false, false).c_str()); @@ -142,7 +142,7 @@ public: m_resourceMappingManager->DeactivateManager(); m_resourceMappingManager.reset(); - AWSCoreFixture::TearDown(); + AWSCoreFixture::TearDownFixture(false); } // AWSCoreInternalRequestBus interface implementation diff --git a/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h b/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h index 1d14484387..65e609b490 100644 --- a/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h +++ b/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h @@ -8,6 +8,7 @@ #pragma once +#include #include #include #include @@ -111,6 +112,11 @@ public: ~AWSCoreFixture() override = default; void SetUp() override + { + SetUpFixture(); + } + + void SetUpFixture(bool mockSettingsRegistry = true) { AZ::AllocatorInstance::Create(); AZ::AllocatorInstance::Create(); @@ -120,14 +126,33 @@ public: AZ::IO::FileIOBase::SetInstance(nullptr); AZ::IO::FileIOBase::SetInstance(m_localFileIO); - m_settingsRegistry = AZStd::make_unique(); - AZ::SettingsRegistry::Register(m_settingsRegistry.get()); + if (mockSettingsRegistry) + { + m_settingsRegistry = AZStd::make_unique(); + AZ::SettingsRegistry::Register(m_settingsRegistry.get()); + } + else + { + m_app = AZStd::make_unique(); + } } void TearDown() override { - AZ::SettingsRegistry::Unregister(m_settingsRegistry.get()); - m_settingsRegistry.reset(); + TearDownFixture(); + } + + void TearDownFixture(bool mockSettingsRegistry = true) + { + if (mockSettingsRegistry) + { + AZ::SettingsRegistry::Unregister(m_settingsRegistry.get()); + m_settingsRegistry.reset(); + } + else + { + m_app.reset(); + } AZ::IO::FileIOBase::SetInstance(nullptr); @@ -173,4 +198,5 @@ private: protected: AZStd::unique_ptr m_settingsRegistry; + AZStd::unique_ptr m_app; }; diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/README.md b/Gems/AWSCore/Code/Tools/ResourceMappingTool/README.md index e09ecc281f..38b7c48d2f 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/README.md +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/README.md @@ -17,7 +17,7 @@ Or follow **AWS CLI** configuration which can be reused by boto3 lib: 1. In order to use engine python environment, it requires to link Qt binaries for this tool. Follow cmake instructions to configure your project, for example: ``` - $ cmake -B -S . -G "Visual Studio 16 2019" -DLY_3RDPARTY_PATH= -DLY_PROJECTS= + $ cmake -B -S . -G "Visual Studio 16 2019" -DLY_PROJECTS= ``` 2. At this point, double check engine python environment gets setup under */python/runtime* directory diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_schema.json b/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_schema.json new file mode 100644 index 0000000000..21bc3334ce --- /dev/null +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_schema.json @@ -0,0 +1,56 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema", + "type": "object", + "title": "O3DE AWS Resource mapping file schema", + "required": ["AWSResourceMappings", "AccountId", "Region", "Version"], + "properties": { + "AWSResourceMappings": { + "type": "object", + "title": "AWS resource mappings schema", + "patternProperties": { + "^.+$": { + "type": "object", + "title": "AWS resource entry schema", + "required": ["Type", "Name/ID"], + "properties": { + "Type": { + "$ref": "#/NonEmptyString" + }, + "Name/ID": { + "$ref": "#/NonEmptyString" + }, + "AccountId": { + "$ref": "#/AccountIdString" + }, + "Region": { + "$ref": "#/RegionString" + } + } + } + }, + "additionalProperties": false + }, + "AccountId": { + "$ref": "#/AccountIdString" + }, + "Region": { + "$ref": "#/RegionString" + }, + "Version": { + "pattern": "^[0-9]{1}.[0-9]{1}.[0-9]{1}$" + } + }, + "AccountIdString": { + "type": "string", + "pattern": "^[0-9]{12}$|EMPTY|^$" + }, + "NonEmptyString": { + "type": "string", + "minLength": 1 + }, + "RegionString": { + "type": "string", + "pattern": "^[a-z]{2}-[a-z]{4,9}-[0-9]{1}$" + }, + "additionalProperties": false +} diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_tool.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_tool.py index 2351fd001b..7424854d2a 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_tool.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_tool.py @@ -10,6 +10,7 @@ import logging import sys from utils import environment_utils +from utils import json_utils from utils import file_utils # arguments setup @@ -74,6 +75,15 @@ if __name__ == "__main__": except FileNotFoundError: logger.warning("Failed to load style sheet for resource mapping tool") + try: + schema_path: str = file_utils.join_path(file_utils.get_parent_directory_path(__file__), + 'resource_mapping_schema.json') + json_utils.load_resource_mapping_json_schema(schema_path) + except (FileNotFoundError, ValueError, KeyError) as e: + logger.error(f"Failed to load schema file {e}") + environment_utils.cleanup_qt_environment() + exit(-1) + logger.info("Initializing configuration manager ...") configuration_manager: ConfigurationManager = ConfigurationManager() configuration_error: bool = not configuration_manager.setup(arguments.profile, arguments.config_path) diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_file_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_file_utils.py index fe0f1754f3..e74771f1ef 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_file_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_file_utils.py @@ -68,12 +68,65 @@ class TestFileUtils(TestCase): self._mock_path.cwd.assert_called_once() assert actual_path_name == TestFileUtils._expected_path_name - def test_get_parent_directory_path_return_expected_path_name(self) -> None: - self._mock_path.return_value.parent = TestFileUtils._expected_path_name + def test_get_parent_directory_path_return_empty_when_invalid_input(self) -> None: + mocked_path: MagicMock = self._mock_path.return_value + mocked_path.exists.return_value = False actual_path_name: str = file_utils.get_parent_directory_path("dummy") self._mock_path.assert_called_once() - assert actual_path_name == TestFileUtils._expected_path_name + assert actual_path_name == "" + + def test_get_parent_directory_path_return_empty_when_parent_invalid(self) -> None: + mocked_path: MagicMock = self._mock_path.return_value + mocked_path.exists.return_value = True + mocked_parent_path: MagicMock = MagicMock() + mocked_path.parent = mocked_parent_path + mocked_parent_path.exists.return_value = False + + actual_path_name: str = file_utils.get_parent_directory_path("dummy") + self._mock_path.assert_called() + assert actual_path_name == "" + + def test_get_parent_directory_path_return_expected_path_when_parent_valid(self) -> None: + mocked_path: MagicMock = self._mock_path.return_value + mocked_path.exists.return_value = True + mocked_parent_path: MagicMock = MagicMock() + mocked_path.parent = mocked_parent_path + mocked_parent_path.exists.return_value = True + mocked_parent_path.resolve.return_value = TestFileUtils._expected_file_name + + actual_path_name: str = file_utils.get_parent_directory_path("dummy") + self._mock_path.assert_called() + assert actual_path_name == TestFileUtils._expected_file_name + + def test_get_parent_directory_path_return_empty_when_level_two_parent_invalid(self) -> None: + mocked_path: MagicMock = self._mock_path.return_value + mocked_path.exists.return_value = True + mocked_parent_path1: MagicMock = MagicMock() + mocked_path.parent = mocked_parent_path1 + mocked_parent_path1.exists.return_value = True + mocked_parent_path2: MagicMock = MagicMock() + mocked_parent_path1.parent = mocked_parent_path2 + mocked_parent_path2.exists.return_value = False + + actual_path_name: str = file_utils.get_parent_directory_path("dummy", 2) + self._mock_path.assert_called() + assert actual_path_name == "" + + def test_get_parent_directory_path_return_expected_path_when_level_two_parent_valid(self) -> None: + mocked_path: MagicMock = self._mock_path.return_value + mocked_path.exists.return_value = True + mocked_parent_path1: MagicMock = MagicMock() + mocked_path.parent = mocked_parent_path1 + mocked_parent_path1.exists.return_value = True + mocked_parent_path2: MagicMock = MagicMock() + mocked_parent_path1.parent = mocked_parent_path2 + mocked_parent_path2.exists.return_value = True + mocked_parent_path2.resolve.return_value = TestFileUtils._expected_file_name + + actual_path_name: str = file_utils.get_parent_directory_path("dummy", 2) + self._mock_path.assert_called() + assert actual_path_name == TestFileUtils._expected_file_name def test_find_files_with_suffix_under_directory_return_expected_file_name(self) -> None: mocked_path: MagicMock = self._mock_path.return_value diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_json_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_json_utils.py index 9fe99461ba..819bfb72fc 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_json_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_json_utils.py @@ -10,6 +10,7 @@ from typing import (Dict, List) from unittest import TestCase from unittest.mock import (MagicMock, mock_open, patch) +from utils import file_utils from utils import json_utils from model import constants from model.resource_mapping_attributes import (ResourceMappingAttributes, ResourceMappingAttributesBuilder, @@ -49,6 +50,10 @@ class TestJsonUtils(TestCase): } def setUp(self) -> None: + schema_path: str = file_utils.join_path(file_utils.get_parent_directory_path(__file__, 4), + 'resource_mapping_schema.json') + json_utils.load_resource_mapping_json_schema(schema_path) + self._mock_open = mock_open() open_patcher: patch = patch("utils.json_utils.open", self._mock_open) self.addCleanup(open_patcher.stop) diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/file_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/file_utils.py index 9e5dd9617b..9899c5dbb2 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/file_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/file_utils.py @@ -33,8 +33,29 @@ def get_current_directory_path() -> str: return str(pathlib.Path.cwd()) -def get_parent_directory_path(file_path: str) -> str: - return pathlib.Path(file_path).parent +def get_parent_directory_path(file_path: str, level: int = 1) -> str: + """ + Get parent directory path based on requested file path + :param file_path: The requested file path + :param level: The level of parent directory, default value is 1 + :return The string value of parent directory path if exist; otherwise empty string + """ + if not pathlib.Path(file_path).exists(): + return "" + + result: pathlib.Path = pathlib.Path(file_path).parent + current_level: int = 1 + while current_level < level: + current_level += 1 + if result.exists(): + result = result.parent + else: + return "" + + if not result.exists(): + return "" + else: + return result.resolve() def find_files_with_suffix_under_directory(dir_path: str, suffix: str) -> List[str]: diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py index 8c094a895c..3af9b9ff4a 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py @@ -19,18 +19,29 @@ Json Utils provide related functions to read/write/serialize/deserialize json fo """ logger = logging.getLogger(__name__) +# resource mapping json content constants _RESOURCE_MAPPING_JSON_KEY_NAME: str = "AWSResourceMappings" _RESOURCE_MAPPING_TYPE_JSON_KEY_NAME: str = "Type" _RESOURCE_MAPPING_NAMEID_JSON_KEY_NAME: str = "Name/ID" _RESOURCE_MAPPING_REGION_JSON_KEY_NAME: str = "Region" _RESOURCE_MAPPING_VERSION_JSON_KEY_NAME: str = "Version" _RESOURCE_MAPPING_JSON_FORMAT_VERSION: str = "1.1.0" - RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME: str = "AccountId" RESOURCE_MAPPING_ACCOUNTID_TEMPLATE_VALUE: str = "EMPTY" -_RESOURCE_MAPPING_ACCOUNTID_PATTERN: str = f"^[0-9]{{12}}$|{RESOURCE_MAPPING_ACCOUNTID_TEMPLATE_VALUE}|^$" -_RESOURCE_MAPPING_REGION_PATTERN: str = "^[a-z]{2}-[a-z]{4,9}-[0-9]{1}$" -_RESOURCE_MAPPING_VERSION_PATTERN: str = "^[0-9]{1}.[0-9]{1}.[0-9]{1}$" + +# resource mapping json schema constants +_RESOURCE_MAPPING_SCHEMA_ACCOUNTID_KEY_NAME: str = "AccountIdString" +_RESOURCE_MAPPING_SCHEMA_REGION_KEY_NAME: str = "RegionString" +_RESOURCE_MAPPING_SCHEMA_REQUIRED_PROPERTIES_KEY_NAME: str = "required" +_RESOURCE_MAPPING_SCHEMA_PROPERTIES_KEY_NAME: str = "properties" +_RESOURCE_MAPPING_SCHEMA_PATTERN_PROPERTIES_KEY_NAME: str = "patternProperties" +_RESOURCE_MAPPING_SCHEMA_PROPERTY_PATTERN_KEY_NAME: str = "pattern" +_RESOURCE_MAPPING_SCHEMA: Dict[str, any] = {} +_RESOURCE_MAPPING_SCHEMA_REQUIRED_ROOT_PROPERTIES: List[str] = [] +_RESOURCE_MAPPING_SCHEMA_REQUIRED_RESOURCE_PROPERTIES: List[str] = [] +_RESOURCE_MAPPING_SCHEMA_ACCOUNTID_PATTERN: str = "" +_RESOURCE_MAPPING_SCHEMA_REGION_PATTERN: str = "" +_RESOURCE_MAPPING_SCHEMA_VERSION_PATTERN: str = "" def _add_validation_error_message(errors: Dict[int, List[str]], row: int, error_message: str) -> None: if row in errors.keys(): @@ -119,6 +130,26 @@ def convert_json_dict_to_resources(json_dict: Dict[str, any]) -> List[ResourceMa return resources +def load_resource_mapping_json_schema(schema_path: str) -> None: + global _RESOURCE_MAPPING_SCHEMA, _RESOURCE_MAPPING_SCHEMA_REQUIRED_ROOT_PROPERTIES, _RESOURCE_MAPPING_SCHEMA_REQUIRED_RESOURCE_PROPERTIES,\ + _RESOURCE_MAPPING_SCHEMA_ACCOUNTID_PATTERN, _RESOURCE_MAPPING_SCHEMA_REGION_PATTERN, _RESOURCE_MAPPING_SCHEMA_VERSION_PATTERN + + if not _RESOURCE_MAPPING_SCHEMA: + # assume schema should be in correct format, and manually load expected pattern; tool will log error if schema is invalid + _RESOURCE_MAPPING_SCHEMA = read_from_json_file(schema_path) + _RESOURCE_MAPPING_SCHEMA_REQUIRED_ROOT_PROPERTIES = _RESOURCE_MAPPING_SCHEMA[_RESOURCE_MAPPING_SCHEMA_REQUIRED_PROPERTIES_KEY_NAME] + schema_properties: Dict[str, any] = _RESOURCE_MAPPING_SCHEMA[_RESOURCE_MAPPING_SCHEMA_PROPERTIES_KEY_NAME] + schema_pattern_properties: Dict[str, any] = \ + schema_properties[_RESOURCE_MAPPING_JSON_KEY_NAME][_RESOURCE_MAPPING_SCHEMA_PATTERN_PROPERTIES_KEY_NAME] + _RESOURCE_MAPPING_SCHEMA_REQUIRED_RESOURCE_PROPERTIES = list(schema_pattern_properties.values())[0][_RESOURCE_MAPPING_SCHEMA_REQUIRED_PROPERTIES_KEY_NAME] + _RESOURCE_MAPPING_SCHEMA_ACCOUNTID_PATTERN = \ + _RESOURCE_MAPPING_SCHEMA[_RESOURCE_MAPPING_SCHEMA_ACCOUNTID_KEY_NAME][_RESOURCE_MAPPING_SCHEMA_PROPERTY_PATTERN_KEY_NAME] + _RESOURCE_MAPPING_SCHEMA_REGION_PATTERN = \ + _RESOURCE_MAPPING_SCHEMA[_RESOURCE_MAPPING_SCHEMA_REGION_KEY_NAME][_RESOURCE_MAPPING_SCHEMA_PROPERTY_PATTERN_KEY_NAME] + _RESOURCE_MAPPING_SCHEMA_VERSION_PATTERN = \ + schema_properties[_RESOURCE_MAPPING_VERSION_JSON_KEY_NAME][_RESOURCE_MAPPING_SCHEMA_PROPERTY_PATTERN_KEY_NAME] + + def read_from_json_file(file_name: str) -> Dict[str, any]: try: json_dict: Dict[str, any] = {} @@ -166,20 +197,20 @@ def validate_resources_according_to_json_schema(resources: List[ResourceMappingA invalid_resources, row_count, error_messages.INVALID_FORMAT_DUPLICATED_KEY_ERROR_MESSAGE.format(resource.key_name)) - if not re.match(_RESOURCE_MAPPING_ACCOUNTID_PATTERN, resource.account_id): + if not re.match(_RESOURCE_MAPPING_SCHEMA_ACCOUNTID_PATTERN, resource.account_id): _add_validation_error_message( invalid_resources, row_count, error_messages.INVALID_FORMAT_UNEXPECTED_VALUE_IN_TABLE_ERROR_MESSAGE.format( resource.account_id, RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME, - _RESOURCE_MAPPING_ACCOUNTID_PATTERN)) + _RESOURCE_MAPPING_SCHEMA_ACCOUNTID_PATTERN)) - if not re.match(_RESOURCE_MAPPING_REGION_PATTERN, resource.region): + if not re.match(_RESOURCE_MAPPING_SCHEMA_REGION_PATTERN, resource.region): _add_validation_error_message( invalid_resources, row_count, error_messages.INVALID_FORMAT_UNEXPECTED_VALUE_IN_TABLE_ERROR_MESSAGE.format( resource.region, _RESOURCE_MAPPING_REGION_JSON_KEY_NAME, - _RESOURCE_MAPPING_REGION_PATTERN)) + _RESOURCE_MAPPING_SCHEMA_REGION_PATTERN)) row_count += 1 @@ -187,30 +218,32 @@ def validate_resources_according_to_json_schema(resources: List[ResourceMappingA def validate_json_dict_according_to_json_schema(json_dict: Dict[str, any]) -> None: - _validate_required_key_in_json_dict(json_dict, "root", _RESOURCE_MAPPING_VERSION_JSON_KEY_NAME) - _validate_required_key_in_json_dict(json_dict, "root", _RESOURCE_MAPPING_JSON_KEY_NAME) + # The reason we keep this manual json schema validation is python missing supportive feature in default libs + # When it is ready, we should be able to replace this with straightforward lib function call + root_property: str + for root_property in _RESOURCE_MAPPING_SCHEMA_REQUIRED_ROOT_PROPERTIES: + _validate_required_key_in_json_dict(json_dict, "root", root_property) - _validate_required_key_in_json_dict(json_dict, "root", RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME) - if not re.match(_RESOURCE_MAPPING_ACCOUNTID_PATTERN, json_dict[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME]): + if not re.match(_RESOURCE_MAPPING_SCHEMA_ACCOUNTID_PATTERN, json_dict[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME]): raise ValueError(error_messages.INVALID_FORMAT_UNEXPECTED_VALUE_IN_FILE_ERROR_MESSAGE.format( json_dict[RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME], f"root/{RESOURCE_MAPPING_ACCOUNTID_JSON_KEY_NAME}", - _RESOURCE_MAPPING_ACCOUNTID_PATTERN)) + _RESOURCE_MAPPING_SCHEMA_ACCOUNTID_PATTERN)) - _validate_required_key_in_json_dict(json_dict, "root", _RESOURCE_MAPPING_REGION_JSON_KEY_NAME) - if not re.match(_RESOURCE_MAPPING_REGION_PATTERN, json_dict[_RESOURCE_MAPPING_REGION_JSON_KEY_NAME]): + if not re.match(_RESOURCE_MAPPING_SCHEMA_REGION_PATTERN, json_dict[_RESOURCE_MAPPING_REGION_JSON_KEY_NAME]): raise ValueError(error_messages.INVALID_FORMAT_UNEXPECTED_VALUE_IN_FILE_ERROR_MESSAGE.format( json_dict[_RESOURCE_MAPPING_REGION_JSON_KEY_NAME], f"root/{_RESOURCE_MAPPING_REGION_JSON_KEY_NAME}", - _RESOURCE_MAPPING_REGION_PATTERN)) + _RESOURCE_MAPPING_SCHEMA_REGION_PATTERN)) json_resources: Dict[str, any] = json_dict[_RESOURCE_MAPPING_JSON_KEY_NAME] if json_resources: resource_key: str resource_value: Dict[str, str] for resource_key, resource_value in json_resources.items(): - _validate_required_key_in_json_dict(resource_value, resource_key, _RESOURCE_MAPPING_TYPE_JSON_KEY_NAME) - _validate_required_key_in_json_dict(resource_value, resource_key, _RESOURCE_MAPPING_NAMEID_JSON_KEY_NAME) + resource_property: str + for resource_property in _RESOURCE_MAPPING_SCHEMA_REQUIRED_RESOURCE_PROPERTIES: + _validate_required_key_in_json_dict(resource_value, resource_key, resource_property) def write_into_json_file(file_name: str, json_dict: Dict[str, any]) -> None: diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp index 487c659ade..1ae406c6fd 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp @@ -52,7 +52,7 @@ namespace ImageProcessingAtom namespace { - static constexpr const char* const LogWindow = "Image Processing"; + [[maybe_unused]] static constexpr const char* const LogWindow = "Image Processing"; } #if defined(AZ_TOOLS_EXPAND_FOR_RESTRICTED_PLATFORMS) diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorDebugDraw.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorDebugDraw.cpp index a079cb660c..a6dc818fc5 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorDebugDraw.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorDebugDraw.cpp @@ -6,6 +6,8 @@ * */ +#include + #include #include #include @@ -25,6 +27,7 @@ namespace AZ::Render { AtomActorDebugDraw::AtomActorDebugDraw(AZ::EntityId entityId) + : m_entityId(entityId) { m_auxGeomFeatureProcessor = RPI::Scene::GetFeatureProcessorForEntity(entityId); } @@ -42,9 +45,11 @@ namespace AZ::Render return; } - const RPI::Scene* scene = RPI::Scene::GetSceneForEntityId(instance->GetEntityId()); + const RPI::Scene* scene = RPI::Scene::GetSceneForEntityId(m_entityId); const RPI::ViewportContextPtr viewport = AZ::Interface::Get()->GetViewportContextByScene(scene); + AzFramework::DebugDisplayRequests* debugDisplay = GetDebugDisplay(viewport->GetId()); const AZ::Render::RenderActorSettings& renderActorSettings = EMotionFX::GetRenderActorSettings(); + const float scaleMultiplier = CalculateScaleMultiplier(instance); // Render aabb if (renderFlags[EMotionFX::ActorRenderFlag::RENDER_AABB]) @@ -75,6 +80,12 @@ namespace AZ::Render RenderEMFXDebugDraw(instance); } + // Render + if (renderFlags[EMotionFX::ActorRenderFlag::RENDER_NODEORIENTATION]) + { + RenderNodeOrientations(instance, debugDisplay, renderActorSettings.m_nodeOrientationScale * scaleMultiplier); + } + // Render vertex normal, face normal, tagent and wireframe. const bool renderVertexNormals = renderFlags[EMotionFX::ActorRenderFlag::RENDER_VERTEXNORMALS]; const bool renderFaceNormals = renderFlags[EMotionFX::ActorRenderFlag::RENDER_FACENORMALS]; @@ -87,7 +98,6 @@ namespace AZ::Render const EMotionFX::Pose* pose = instance->GetTransformData()->GetCurrentPose(); const size_t geomLODLevel = instance->GetLODLevel(); const size_t numEnabled = instance->GetNumEnabledNodes(); - const float scaleMultiplier = CalculateScaleMultiplier(instance); for (size_t i = 0; i < numEnabled; ++i) { EMotionFX::Node* node = instance->GetActor()->GetSkeleton()->GetNode(instance->GetEnabledNode(i)); @@ -175,6 +185,13 @@ namespace AZ::Render } } + AzFramework::DebugDisplayRequests* AtomActorDebugDraw::GetDebugDisplay(AzFramework::ViewportId viewportId) + { + AzFramework::DebugDisplayRequestBus::BusPtr debugDisplayBus; + AzFramework::DebugDisplayRequestBus::Bind(debugDisplayBus, viewportId); + return AzFramework::DebugDisplayRequestBus::FindFirstHandler(debugDisplayBus); + } + void AtomActorDebugDraw::RenderAABB(EMotionFX::ActorInstance* instance, const AZ::Color& aabbColor) { RPI::AuxGeomDrawPtr auxGeom = m_auxGeomFeatureProcessor->GetDrawQueue(); @@ -610,4 +627,89 @@ namespace AZ::Render m_fontDrawInterface->DrawScreenAlignedText3d(m_drawParams, joint->GetName()); } } + + void AtomActorDebugDraw::RenderNodeOrientations(EMotionFX::ActorInstance* actorInstance, + AzFramework::DebugDisplayRequests* debugDisplay, float scale) + { + // Get the actor and the transform data + const float unitScale = + 1.0f / (float)MCore::Distance::ConvertValue(1.0f, MCore::Distance::UNITTYPE_METERS, EMotionFX::GetEMotionFX().GetUnitType()); + const EMotionFX::Actor* actor = actorInstance->GetActor(); + const EMotionFX::Skeleton* skeleton = actor->GetSkeleton(); + const EMotionFX::TransformData* transformData = actorInstance->GetTransformData(); + const EMotionFX::Pose* pose = transformData->GetCurrentPose(); + const float constPreScale = scale * unitScale * 3.0f; + + const size_t numEnabled = actorInstance->GetNumEnabledNodes(); + for (size_t i = 0; i < numEnabled; ++i) + { + EMotionFX::Node* joint = skeleton->GetNode(actorInstance->GetEnabledNode(i)); + const size_t jointIndex = joint->GetNodeIndex(); + + static const float axisBoneScale = 50.0f; + const float size = CalculateBoneScale(actorInstance, joint) * constPreScale * axisBoneScale; + AZ::Transform worldTM = pose->GetWorldSpaceTransform(jointIndex).ToAZTransform(); + RenderLineAxis(debugDisplay, worldTM, size, false /*selected*/); + } + } + + void AtomActorDebugDraw::RenderLineAxis( + AzFramework::DebugDisplayRequests* debugDisplay, + AZ::Transform worldTM, + float size, + bool selected, + bool renderAxisName) + { + const float axisHeight = size * 0.7f; + const float frontSize = size * 5.0f + 0.2f; + const AZ::Vector3 position = worldTM.GetTranslation(); + + // Render x axis + { + AZ::Color xSelectedColor = selected ? AZ::Colors::Orange : AZ::Colors::Red; + + const AZ::Vector3 xAxisDir = (worldTM.TransformPoint(AZ::Vector3(size, 0.0f, 0.0f)) - position).GetNormalized(); + const AZ::Vector3 xAxisArrowStart = position + xAxisDir * axisHeight; + debugDisplay->SetColor(xSelectedColor); + debugDisplay->DrawArrow(position, xAxisArrowStart, size); + + if (renderAxisName) + { + const AZ::Vector3 xNamePos = position + xAxisDir * (size * 1.15f); + debugDisplay->DrawTextLabel(xNamePos, frontSize, "X"); + } + } + + // Render y axis + { + AZ::Color ySelectedColor = selected ? AZ::Colors::Orange : AZ::Colors::Blue; + + const AZ::Vector3 yAxisDir = (worldTM.TransformPoint(AZ::Vector3(0.0f, size, 0.0f)) - position).GetNormalized(); + const AZ::Vector3 yAxisArrowStart = position + yAxisDir * axisHeight; + debugDisplay->SetColor(ySelectedColor); + debugDisplay->DrawArrow(position, yAxisArrowStart, size); + + if (renderAxisName) + { + const AZ::Vector3 yNamePos = position + yAxisDir * (size * 1.15f); + debugDisplay->DrawTextLabel(yNamePos, frontSize, "Y"); + } + } + + // Render z axis + { + AZ::Color zSelectedColor = selected ? AZ::Colors::Orange : AZ::Colors::Green; + + const AZ::Vector3 zAxisDir = (worldTM.TransformPoint(AZ::Vector3(0.0f, 0.0f, size)) - position).GetNormalized(); + const AZ::Vector3 zAxisArrowStart = position + zAxisDir * axisHeight; + debugDisplay->SetColor(zSelectedColor); + debugDisplay->DrawArrow(position, zAxisArrowStart, size); + + if (renderAxisName) + { + const AZ::Vector3 zNamePos = position + zAxisDir * (size * 1.15f); + debugDisplay->DrawTextLabel(zNamePos, frontSize, "Z"); + } + } + } } // namespace AZ::Render diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorDebugDraw.h b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorDebugDraw.h index 6289077fe2..d3a6bc44f3 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorDebugDraw.h +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorDebugDraw.h @@ -15,6 +15,11 @@ #include #include +namespace AzFramework +{ + class DebugDisplayRequests; +} + namespace EMotionFX { class Mesh; @@ -42,6 +47,7 @@ namespace AZ::Render float CalculateBoneScale(EMotionFX::ActorInstance* actorInstance, EMotionFX::Node* node); float CalculateScaleMultiplier(EMotionFX::ActorInstance* instance) const; void PrepareForMesh(EMotionFX::Mesh* mesh, const AZ::Transform& worldTM); + AzFramework::DebugDisplayRequests* GetDebugDisplay(AzFramework::ViewportId viewportId); void RenderAABB(EMotionFX::ActorInstance* instance, const AZ::Color& aabbColor); void RenderLineSkeleton(EMotionFX::ActorInstance* instance, const AZ::Color& skeletonColor); @@ -63,11 +69,18 @@ namespace AZ::Render void RenderWireframe(EMotionFX::Mesh* mesh, const AZ::Transform& worldTM, float wireframeScale, float scaleMultiplier, const AZ::Color& wireframeColor); void RenderJointNames(EMotionFX::ActorInstance* actorInstance, RPI::ViewportContextPtr viewportContext, const AZ::Color& jointNameColor); + void RenderNodeOrientations(EMotionFX::ActorInstance* actorInstance, AzFramework::DebugDisplayRequests* debugDisplay, float scale = 1.0f); + void RenderLineAxis( + AzFramework::DebugDisplayRequests* debugDisplay, + AZ::Transform worldTM, //!< The world space transformation matrix to visualize. */ + float size, //!< The size value in units is used to control the scaling of the axis. */ + bool selected, //!< Set to true if you want to render the axis using the selection color. */ + bool renderAxisName = false); - EMotionFX::Mesh* m_currentMesh = nullptr; /**< A pointer to the mesh whose world space positions are in the pre-calculated positions buffer. - NULL in case we haven't pre-calculated any positions yet. */ - AZStd::vector m_worldSpacePositions; /**< The buffer used to store world space positions for rendering normals - tangents and the wireframe. */ + EMotionFX::Mesh* m_currentMesh = nullptr; //!< A pointer to the mesh whose world space positions are in the pre-calculated positions buffer. + //!< NULL in case we haven't pre-calculated any positions yet. + AZStd::vector m_worldSpacePositions; //!< The buffer used to store world space positions for rendering normals + //!< tangents and the wireframe. static constexpr float BaseFontSize = 0.7f; const Vector3 TopRightBorderPadding = AZ::Vector3(-40.0f, 22.0f, 0.0f); @@ -75,6 +88,7 @@ namespace AZ::Render RPI::AuxGeomFeatureProcessorInterface* m_auxGeomFeatureProcessor = nullptr; AZStd::vector m_auxVertices; AZStd::vector m_auxColors; + EntityId m_entityId; AzFramework::TextDrawParameters m_drawParams; AzFramework::FontDrawInterface* m_fontDrawInterface = nullptr; diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Tools/EMStudio/AnimViewportToolBar.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Tools/EMStudio/AnimViewportToolBar.cpp index 4fb59afd1b..7bb8d49418 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Tools/EMStudio/AnimViewportToolBar.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Tools/EMStudio/AnimViewportToolBar.cpp @@ -46,8 +46,8 @@ namespace EMStudio CreateViewOptionEntry(contextMenu, "Line Skeleton", EMotionFX::ActorRenderFlag::RENDER_LINESKELETON); CreateViewOptionEntry(contextMenu, "Solid Skeleton", EMotionFX::ActorRenderFlag::RENDER_SKELETON); CreateViewOptionEntry(contextMenu, "Joint Names", EMotionFX::ActorRenderFlag::RENDER_NODENAMES); + CreateViewOptionEntry(contextMenu, "Joint Orientations", EMotionFX::ActorRenderFlag::RENDER_NODEORIENTATION); // [EMFX-TODO] Add those option once implemented. - // CreateViewOptionEntry(contextMenu, "Joint Orientations", EMotionFX::ActorRenderFlag::RENDER_NODEORIENTATION); // CreateViewOptionEntry(contextMenu, "Actor Bind Pose", EMotionFX::ActorRenderFlag::RENDER_ACTORBINDPOSE); contextMenu->addSeparator(); CreateViewOptionEntry(contextMenu, "Hit Detection Colliders", EMotionFX::ActorRenderFlag::RENDER_HITDETECTION_COLLIDERS); diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Tools/EMStudio/AnimViewportWidget.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Tools/EMStudio/AnimViewportWidget.cpp index 86529d16ec..43d8483a6b 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Tools/EMStudio/AnimViewportWidget.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Tools/EMStudio/AnimViewportWidget.cpp @@ -55,13 +55,13 @@ namespace EMStudio void AnimViewportWidget::Reinit(bool resetCamera) { + m_renderer->Reinit(); + m_renderer->UpdateActorRenderFlag(m_renderFlags); + if (resetCamera) { ResetCamera(); } - - m_renderer->Reinit(); - m_renderer->UpdateActorRenderFlag(m_renderFlags); } EMotionFX::ActorRenderFlagBitset AnimViewportWidget::GetRenderFlags() const diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderOptions.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderOptions.cpp index c7cdecafe0..241412c6c8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderOptions.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderOptions.cpp @@ -1063,6 +1063,7 @@ namespace EMStudio settings.m_vertexNormalsScale = m_vertexNormalsScale; settings.m_faceNormalsScale = m_faceNormalsScale; settings.m_tangentsScale = m_tangentsScale; + settings.m_nodeOrientationScale = m_nodeOrientationScale; settings.m_vertexNormalsColor = m_vertexNormalsColor; settings.m_faceNormalsColor = m_faceNormalsColor; @@ -1112,6 +1113,7 @@ namespace EMStudio void RenderOptions::OnNodeOrientationScaleChangedCallback() const { PluginOptionsNotificationsBus::Event(s_nodeOrientationScaleOptionName, &PluginOptionsNotificationsBus::Events::OnOptionChanged, s_nodeOrientationScaleOptionName); + CopyToRenderActorSettings(EMotionFX::GetRenderActorSettings()); } void RenderOptions::OnScaleBonesOnLengthChangedCallback() const diff --git a/Gems/EMotionFX/Code/MCore/Source/Algorithms.cpp b/Gems/EMotionFX/Code/MCore/Source/Algorithms.cpp index dd82385092..527407aaa8 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Algorithms.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Algorithms.cpp @@ -293,7 +293,7 @@ namespace MCore // check if the test point is inside the polygon AZ::Vector2 ClosestPointToPoly(const AZ::Vector2* polyPoints, size_t numPoints, const AZ::Vector2& testPoint) { - AZ::Vector2 result; + AZ::Vector2 result = AZ::Vector2::CreateZero(); float closestDist = FLT_MAX; for (size_t i = 0; i < numPoints; ++i) { diff --git a/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.cpp b/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.cpp index 5e9cf66fa7..30d54c6b7b 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.cpp +++ b/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.cpp @@ -71,8 +71,6 @@ namespace MysticQt setWidget(m_rootSplitter); } - - // destructor DialogStack::~DialogStack() { } @@ -81,6 +79,14 @@ namespace MysticQt // get rid of all dialogs and their allocated memory void DialogStack::Clear() { + for (Dialog& dialog : m_dialogs) + { + if (dialog.m_dialogWidget) + { + dialog.m_dialogWidget->deleteLater(); + } + } + // destroy the dialogs m_dialogs.clear(); @@ -679,6 +685,4 @@ namespace MysticQt return; } } -} // namespace MysticQt - -#include +} // namespace MysticQt diff --git a/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.h b/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.h index bf93b5d23f..64a48fb392 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.h +++ b/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.h @@ -6,10 +6,8 @@ * */ -#ifndef __MYSTICQT_DIALOGSTACK_H -#define __MYSTICQT_DIALOGSTACK_H +#pragma once -// #if !defined(Q_MOC_RUN) #include "MysticQtConfig.h" #include @@ -30,14 +28,10 @@ namespace MysticQt { class DialogStackSplitter; - /** - * - * - */ class MYSTICQT_API DialogStack : public QScrollArea { - Q_OBJECT + Q_OBJECT // AUTOMOC public: DialogStack(QWidget* parent = nullptr); @@ -89,5 +83,3 @@ namespace MysticQt int32 m_prevMouseY; }; } // namespace MysticQt - -#endif diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorSettings.h b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorSettings.h index 0fa7842ded..0260d1aae5 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorSettings.h +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorSettings.h @@ -26,6 +26,7 @@ namespace AZ::Render float m_faceNormalsScale = 1.0f; float m_tangentsScale = 1.0f; float m_wireframeScale = 1.0f; + float m_nodeOrientationScale = 1.0f; AZ::Color m_hitDetectionColliderColor{0.44f, 0.44f, 0.44f, 1.0f}; AZ::Color m_selectedHitDetectionColliderColor{ 0.3f, 0.56f, 0.88f, 1.0f }; diff --git a/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp b/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp index 38936dc302..57de6f776a 100644 --- a/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp @@ -324,8 +324,6 @@ namespace GradientSignal void GradientTransformComponent::TransformPositionToUVW(const AZ::Vector3& inPosition, AZ::Vector3& outUVW, const bool shouldNormalizeOutput, bool& wasPointRejected) const { - AZ_PROFILE_FUNCTION(Entity); - AZStd::lock_guard lock(m_cacheMutex); //transforming coordinate into "local" relative space of shape bounds diff --git a/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp index 6fe8d32484..021e083ea6 100644 --- a/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp @@ -191,8 +191,6 @@ namespace GradientSignal float ImageGradientComponent::GetValue(const GradientSampleParams& sampleParams) const { - AZ_PROFILE_FUNCTION(Entity); - AZ::Vector3 uvw = sampleParams.m_position; bool wasPointRejected = false; diff --git a/Gems/GradientSignal/Code/Source/ImageAsset.cpp b/Gems/GradientSignal/Code/Source/ImageAsset.cpp index c67f86c6b8..7e73dc32d6 100644 --- a/Gems/GradientSignal/Code/Source/ImageAsset.cpp +++ b/Gems/GradientSignal/Code/Source/ImageAsset.cpp @@ -153,8 +153,6 @@ namespace GradientSignal float GetValueFromImageAsset(const AZ::Data::Asset& imageAsset, const AZ::Vector3& uvw, float tilingX, float tilingY, float defaultValue) { - AZ_PROFILE_FUNCTION(Entity); - if (imageAsset.IsReady()) { const auto& image = imageAsset.Get(); diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.h index 84963c7997..ce8ea4c8a9 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.h @@ -19,7 +19,6 @@ #include #include #include -#include #include namespace GraphCanvas diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp b/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp index f51c2c1272..dfcb106777 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp +++ b/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp @@ -58,7 +58,6 @@ #include #include -#include #include #include @@ -386,6 +385,16 @@ namespace GraphCanvas AZ::Data::AssetCatalogRequestBus::Broadcast(&AZ::Data::AssetCatalogRequestBus::Events::EnumerateAssets, nullptr, collectAssetsCb, postEnumerateCb); } + void GraphCanvasSystemComponent::OnCatalogAssetChanged(const AZ::Data::AssetId& assetId) + { + AZ::Data::AssetInfo assetInfo; + AZ::Data::AssetCatalogRequestBus::BroadcastResult(assetInfo, &AZ::Data::AssetCatalogRequestBus::Events::GetAssetInfoById, assetId); + if (assetInfo.m_assetType == azrtti_typeid()) + { + GraphCanvas::TranslationRequestBus::Broadcast(&GraphCanvas::TranslationRequests::Restore); + } + } + void GraphCanvasSystemComponent::UnregisterAssetHandler() { if (m_assetHandler) diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvas.h b/Gems/GraphCanvas/Code/Source/GraphCanvas.h index 7a4d9677ab..0b47e9010a 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvas.h +++ b/Gems/GraphCanvas/Code/Source/GraphCanvas.h @@ -77,7 +77,10 @@ namespace GraphCanvas AZ::EntityId CreateVirtualChild(const AZ::EntityId& real, const AZStd::string& virtualChildElement) const override; //// + // AzFramework::AssetCatalogEventBus::Handler void OnCatalogLoaded(const char* /*catalogFile*/) override; + void OnCatalogAssetChanged(const AZ::Data::AssetId&) override; + //// AZStd::unique_ptr m_assetHandler; diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.h b/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.h index 653aac3afc..b31bf25851 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.h +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.h @@ -59,14 +59,14 @@ namespace GraphCanvas //! //! Requirements: //! - Must have a top level array called "entries" - //! - Must provide a "key" element for any entry added + //! - Must provide a "base" element for any entry added //! //! Example: //! //! { //! "entries": [ //! { - //! "key": "Globals", + //! "base": "Globals", //! "details": { //! "name": "My Name", //! "tooltip": "My Tooltip" @@ -90,21 +90,21 @@ namespace GraphCanvas //! Globals.details.somearray.0.name //! Globals.details.somearray.1.name //! - //! There is one important aspect however, if an element in an array has a "key" value, the value of this key + //! There is one important aspect however, if an element in an array has a "base" value, the value of this key //! will replace the index. This is useful when the index and/or ordering of an entry is not relevant or may //! change. //! //! "somearray": [ { //! "name": "First one" - //! "key": "a_key" + //! "base": "a_key" //! }, { //! "name": "Second one", - //! "key": "b_key" + //! "base": "b_key" //! } ] //! - //! Globals.details.somearray.0.key == "a_key" + //! Globals.details.somearray.0.base == "a_key" //! Globals.details.somearray.0.name == "First one" - //! Globals.details.somearray.1.key == "b_key" + //! Globals.details.somearray.1.base == "b_key" //! Globals.details.somearray.1.name == "Second one" //! class TranslationAssetHandler diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp index bb42f77c49..1f76b53b27 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp @@ -11,17 +11,6 @@ namespace GraphCanvas { - namespace Schema - { - namespace Field - { - static constexpr char key[] = "key"; - static constexpr char context[] = "context"; - static constexpr char variant[] = "variant"; - static constexpr char entries[] = "entries"; - } - } - AZ_CLASS_ALLOCATOR_IMPL(TranslationFormatSerializer, AZ::SystemAllocator, 0); void AddEntryToDatabase(const AZStd::string& baseKey, const AZStd::string& name, const rapidjson::Value& it, TranslationFormat* translationFormat) @@ -76,11 +65,15 @@ namespace GraphCanvas const rapidjson::Value& array = it; for (rapidjson::SizeType i = 0; i < array.Size(); ++i) { - // so, here, I need to go in and if there is a "key" member within the object, then I need to use that, - // if there isn't, I can use the %d + // if there is a "base" member within the object, then use it, otherwise use the index if (array[i].IsObject()) { - if (array[i].HasMember(Schema::Field::key)) + if (array[i].HasMember(Schema::Field::deprecated_key)) + { + AZStd::string innerKey = array[i].FindMember(Schema::Field::deprecated_key)->value.GetString(); + itemKey.append(AZStd::string::format(".%s", innerKey.c_str())); + } + else if (array[i].HasMember(Schema::Field::key)) { AZStd::string innerKey = array[i].FindMember(Schema::Field::key)->value.GetString(); itemKey.append(AZStd::string::format(".%s", innerKey.c_str())); @@ -133,7 +126,12 @@ namespace GraphCanvas AZStd::string keyStr; rapidjson::Value::ConstMemberIterator keyValue; - if (entry.HasMember(Schema::Field::key)) + if (entry.HasMember(Schema::Field::deprecated_key)) + { + keyValue = entry.FindMember(Schema::Field::deprecated_key); + keyStr = keyValue->value.GetString(); + } + else if (entry.HasMember(Schema::Field::key)) { keyValue = entry.FindMember(Schema::Field::key); keyStr = keyValue->value.GetString(); diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.h b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.h index fa7e6e64e1..605e06a76b 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.h +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.h @@ -23,4 +23,17 @@ namespace GraphCanvas AZ::JsonSerializationResult::Result Store(rapidjson::Value& outputValue, const void* inputValue, const void* defaultValue, const AZ::Uuid& valueTypeId, AZ::JsonSerializerContext& context) override; }; + + namespace Schema + { + namespace Field + { + // Moved away from "key" due to some strict filtering on secrets + static constexpr char deprecated_key[] = "key"; + static constexpr char key[] = "base"; + static constexpr char context[] = "context"; + static constexpr char variant[] = "variant"; + static constexpr char entries[] = "entries"; + } + } } diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.h b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.h index 4e52218721..3fbd934909 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.h +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.h @@ -16,7 +16,6 @@ AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") AZ_POP_DISABLE_WARNING #include -#include namespace GraphCanvas { diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeBus.h index 513400b470..d5b8a7ff57 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeBus.h @@ -15,7 +15,6 @@ #include #include #include -#include #include diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeTitleBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeTitleBus.h index 88846739d0..6470ebfbd1 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeTitleBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeTitleBus.h @@ -11,7 +11,6 @@ #include #include -#include #include #include diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/SlotBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/SlotBus.h index a3f8bfb757..8df36232fe 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/SlotBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/SlotBus.h @@ -16,7 +16,6 @@ #include #include -#include class QGraphicsLayoutItem; diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/TranslationTypes.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/TranslationTypes.h deleted file mode 100644 index 7205be7c00..0000000000 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/TranslationTypes.h +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. - * For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include - -#include - -namespace GraphCanvas -{ - struct TranslationKeyedString - { - public: - AZ_TYPE_INFO(TranslationKeyedString, "{B796685C-0335-4E74-9EF8-A1933E8B2142}"); - AZ_CLASS_ALLOCATOR(TranslationKeyedString, AZ::SystemAllocator, 0); - - static void Reflect(AZ::ReflectContext* context) - { - AZ::SerializeContext* serializeContext = azrtti_cast(context); - if (!serializeContext) - { - return; - } - - serializeContext->Class() - ->Version(1) - ->Field("Fallback", &TranslationKeyedString::m_fallback) - ->Field("Context", &TranslationKeyedString::m_context) - ->Field("Key", &TranslationKeyedString::m_key) - ; - } - - TranslationKeyedString() - : m_dirtyText(true) - { - } - - ~TranslationKeyedString() = default; - - TranslationKeyedString(const AZStd::string& fallback, const AZStd::string& context = AZStd::string(), const AZStd::string& key = AZStd::string()) - : m_fallback(fallback) - , m_context(context) - , m_key(key) - , m_dirtyText(true) - { - } - - const AZStd::string GetDisplayString() const - { - if (m_dirtyText) - { - const_cast(this)->TranslateString(); - } - - return m_display; - } - - void TranslateString() - { - m_display = m_fallback; - - if (!m_context.empty() && !m_key.empty()) - { - AZStd::string translatedText = QCoreApplication::translate(m_context.c_str(), m_key.c_str()).toUtf8().data(); - - if (translatedText != m_key) - { - m_display = translatedText; - } - } - - m_dirtyText = false; - } - - bool empty() const - { - return m_fallback.empty() && (m_context.empty() || m_key.empty()); - } - - bool operator==(const TranslationKeyedString& other) const - { - return m_fallback == other.m_fallback - && m_context == other.m_context - && m_key == other.m_key - ; - } - - void Clear() - { - m_key.clear(); - m_context.clear(); - m_fallback.clear(); - } - - void SetFallback(const AZStd::string& fallback) - { - m_fallback = fallback; - m_dirtyText = true; - } - - AZStd::string m_context; - AZStd::string m_key; - AZStd::string m_display; - - private: - AZStd::string m_fallback; - - bool m_dirtyText; - }; -} diff --git a/Gems/GraphCanvas/Code/graphcanvas_staticlib_files.cmake b/Gems/GraphCanvas/Code/graphcanvas_staticlib_files.cmake index b62ff303a6..455b5673d3 100644 --- a/Gems/GraphCanvas/Code/graphcanvas_staticlib_files.cmake +++ b/Gems/GraphCanvas/Code/graphcanvas_staticlib_files.cmake @@ -102,8 +102,7 @@ set(FILES StaticLib/GraphCanvas/Types/GraphCanvasGraphData.h StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.cpp StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.h - StaticLib/GraphCanvas/Types/SceneMemberComponentSaveData.h - StaticLib/GraphCanvas/Types/TranslationTypes.h + StaticLib/GraphCanvas/Types/SceneMemberComponentSaveData.h StaticLib/GraphCanvas/Types/Types.h StaticLib/GraphCanvas/Types/QtMetaTypes.h StaticLib/GraphCanvas/Widgets/Resources/default_style.json diff --git a/Gems/LyShine/Code/Source/Draw2d.cpp b/Gems/LyShine/Code/Source/Draw2d.cpp index 3476c530b2..9a97f27592 100644 --- a/Gems/LyShine/Code/Source/Draw2d.cpp +++ b/Gems/LyShine/Code/Source/Draw2d.cpp @@ -497,7 +497,7 @@ void CDraw2d::SetSortKey(int64_t key) AZ::Vector2 CDraw2d::Align(AZ::Vector2 position, AZ::Vector2 size, HAlign horizontalAlignment, VAlign verticalAlignment) { - AZ::Vector2 result; + AZ::Vector2 result = AZ::Vector2::CreateZero(); switch (horizontalAlignment) { case HAlign::Left: diff --git a/Gems/LyShine/Code/Source/UiTextComponent.cpp b/Gems/LyShine/Code/Source/UiTextComponent.cpp index e18a9cefe2..698dcc2b5e 100644 --- a/Gems/LyShine/Code/Source/UiTextComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTextComponent.cpp @@ -4936,7 +4936,7 @@ AZStd::string UiTextComponent::GetLocalizedText([[maybe_unused]] const AZStd::st //////////////////////////////////////////////////////////////////////////////////////////////////// AZ::Vector2 UiTextComponent::CalculateAlignedPositionWithYOffset(const UiTransformInterface::RectPoints& points) { - AZ::Vector2 pos; + AZ::Vector2 pos = AZ::Vector2::CreateZero(); const DrawBatchLines& drawBatchLines = GetDrawBatchLines(); size_t numLinesOfText = drawBatchLines.batchLines.size(); diff --git a/Gems/PhysX/Code/CMakeLists.txt b/Gems/PhysX/Code/CMakeLists.txt index bb3d7c08a2..fcb2f8ab20 100644 --- a/Gems/PhysX/Code/CMakeLists.txt +++ b/Gems/PhysX/Code/CMakeLists.txt @@ -182,14 +182,6 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) Gem::LmbrCentral ) - if(PAL_TRAIT_JOINTS_TYPED_TEST_CASE) - ly_add_source_properties( - SOURCES Tests/PhysXJointsTest.cpp - PROPERTY COMPILE_DEFINITIONS - VALUES ENABLE_JOINTS_TYPED_TEST_CASE - ) - endif() - ly_add_googletest( NAME Gem::PhysX.Tests ) diff --git a/Gems/PhysX/Code/Editor/ColliderComponentMode.cpp b/Gems/PhysX/Code/Editor/ColliderComponentMode.cpp index 5de625f679..e5e75d88a3 100644 --- a/Gems/PhysX/Code/Editor/ColliderComponentMode.cpp +++ b/Gems/PhysX/Code/Editor/ColliderComponentMode.cpp @@ -7,20 +7,20 @@ */ #include "ColliderComponentMode.h" +#include "ColliderAssetScaleMode.h" +#include "ColliderBoxMode.h" +#include "ColliderCapsuleMode.h" #include "ColliderOffsetMode.h" #include "ColliderRotationMode.h" -#include "ColliderBoxMode.h" #include "ColliderSphereMode.h" -#include "ColliderCapsuleMode.h" -#include "ColliderAssetScaleMode.h" #include #include #include +#include #include #include -#include namespace PhysX { @@ -31,7 +31,7 @@ namespace PhysX const AZ::Crc32 SetOffsetSubModeActionUri = AZ_CRC("com.o3de.action.physx.setoffsetsubmode", 0xc06132e5); const AZ::Crc32 SetRotationSubModeActionUri = AZ_CRC("com.o3de.action.physx.setrotationsubmode", 0xc4225918); const AZ::Crc32 ResetSubModeActionUri = AZ_CRC("com.o3de.action.physx.resetsubmode", 0xb70b120e); - } + } // namespace AZ_CLASS_ALLOCATOR_IMPL(ColliderComponentMode, AZ::SystemAllocator, 0); @@ -39,19 +39,17 @@ namespace PhysX : AzToolsFramework::ComponentModeFramework::EditorBaseComponentMode(entityComponentIdPair, componentType) { CreateSubModes(); + CreateSubModeSelectionCluster(); ColliderComponentModeRequestBus::Handler::BusConnect(entityComponentIdPair); ColliderComponentModeUiRequestBus::Handler::BusConnect(entityComponentIdPair); - - CreateSubModeSelectionCluster(); } ColliderComponentMode::~ColliderComponentMode() { - RemoveSubModeSelectionCluster(); - ColliderComponentModeUiRequestBus::Handler::BusDisconnect(); ColliderComponentModeRequestBus::Handler::BusDisconnect(); + RemoveSubModeSelectionCluster(); m_subModes[m_subMode]->Teardown(GetEntityComponentIdPair()); } @@ -62,39 +60,41 @@ namespace PhysX AZStd::vector ColliderComponentMode::PopulateActionsImpl() { - - AzToolsFramework::ActionOverride setDimensionsModeAction; - setDimensionsModeAction.SetUri(SetDimensionsSubModeActionUri); - setDimensionsModeAction.SetKeySequence(QKeySequence(Qt::Key_1)); - setDimensionsModeAction.SetTitle("Set Resize Mode"); - setDimensionsModeAction.SetTip("Set resize mode"); - setDimensionsModeAction.SetEntityComponentIdPair(GetEntityComponentIdPair()); - setDimensionsModeAction.SetCallback([this]() - { - SetCurrentMode(SubMode::Dimensions); - }); - AzToolsFramework::ActionOverride setOffsetModeAction; setOffsetModeAction.SetUri(SetOffsetSubModeActionUri); - setOffsetModeAction.SetKeySequence(QKeySequence(Qt::Key_2)); + setOffsetModeAction.SetKeySequence(QKeySequence(Qt::Key_1)); setOffsetModeAction.SetTitle("Set Offset Mode"); setOffsetModeAction.SetTip("Set offset mode"); setOffsetModeAction.SetEntityComponentIdPair(GetEntityComponentIdPair()); - setOffsetModeAction.SetCallback([this]() - { - SetCurrentMode(SubMode::Offset); - }); + setOffsetModeAction.SetCallback( + [this]() + { + SetCurrentMode(SubMode::Offset); + }); AzToolsFramework::ActionOverride setRotationModeAction; setRotationModeAction.SetUri(SetRotationSubModeActionUri); - setRotationModeAction.SetKeySequence(QKeySequence(Qt::Key_3)); + setRotationModeAction.SetKeySequence(QKeySequence(Qt::Key_2)); setRotationModeAction.SetTitle("Set Rotation Mode"); setRotationModeAction.SetTip("Set rotation mode"); setRotationModeAction.SetEntityComponentIdPair(GetEntityComponentIdPair()); - setRotationModeAction.SetCallback([this]() - { - SetCurrentMode(SubMode::Rotation); - }); + setRotationModeAction.SetCallback( + [this]() + { + SetCurrentMode(SubMode::Rotation); + }); + + AzToolsFramework::ActionOverride setDimensionsModeAction; + setDimensionsModeAction.SetUri(SetDimensionsSubModeActionUri); + setDimensionsModeAction.SetKeySequence(QKeySequence(Qt::Key_3)); + setDimensionsModeAction.SetTitle("Set Resize Mode"); + setDimensionsModeAction.SetTip("Set resize mode"); + setDimensionsModeAction.SetEntityComponentIdPair(GetEntityComponentIdPair()); + setDimensionsModeAction.SetCallback( + [this]() + { + SetCurrentMode(SubMode::Dimensions); + }); AzToolsFramework::ActionOverride resetModeAction; resetModeAction.SetUri(ResetSubModeActionUri); @@ -102,12 +102,13 @@ namespace PhysX resetModeAction.SetTitle("Reset Current Mode"); resetModeAction.SetTip("Reset current mode"); resetModeAction.SetEntityComponentIdPair(GetEntityComponentIdPair()); - resetModeAction.SetCallback([this]() - { - ResetCurrentMode(); - }); + resetModeAction.SetCallback( + [this]() + { + ResetCurrentMode(); + }); - return {setDimensionsModeAction, setOffsetModeAction, setRotationModeAction, resetModeAction }; + return { setDimensionsModeAction, setOffsetModeAction, setRotationModeAction, resetModeAction }; } void ColliderComponentMode::CreateSubModes() @@ -141,7 +142,7 @@ namespace PhysX if (mouseInteraction.m_mouseEvent == AzToolsFramework::ViewportInteraction::MouseEvent::Wheel && mouseInteraction.m_mouseInteraction.m_keyboardModifiers.Ctrl()) { - int direction = MouseWheelDelta(mouseInteraction) > 0.0f ? 1 : -1; + const int direction = MouseWheelDelta(mouseInteraction) > 0.0f ? -1 : 1; AZ::u32 currentModeIndex = static_cast(m_subMode); AZ::u32 numSubModes = static_cast(SubMode::NumModes); AZ::u32 nextModeIndex = (currentModeIndex + numSubModes + direction) % m_subModes.size(); @@ -159,10 +160,17 @@ namespace PhysX void ColliderComponentMode::SetCurrentMode(SubMode newMode) { - AZ_Assert(m_subModes.count(newMode) > 0, "Submode not found:%d", newMode); + AZ_Assert(m_subModes.find(newMode) != m_subModes.end(), "Submode not found:%d", newMode); m_subModes[m_subMode]->Teardown(GetEntityComponentIdPair()); m_subMode = newMode; m_subModes[m_subMode]->Setup(GetEntityComponentIdPair()); + + const auto modeIndex = static_cast(newMode); + AZ_Assert(modeIndex < m_buttonIds.size(), "Invalid mode index %i.", modeIndex); + AzToolsFramework::ViewportUi::ViewportUiRequestBus::Event( + AzToolsFramework::ViewportUi::DefaultViewportId, + &AzToolsFramework::ViewportUi::ViewportUiRequestBus::Events::SetClusterActiveButton, m_modeSelectionClusterId, + m_buttonIds[modeIndex]); } AzToolsFramework::ViewportUi::ClusterId ColliderComponentMode::GetClusterId() const @@ -172,36 +180,40 @@ namespace PhysX AzToolsFramework::ViewportUi::ButtonId ColliderComponentMode::GetOffsetButtonId() const { - return m_offsetModeButtonId; + return m_buttonIds[static_cast(SubMode::Offset)]; } AzToolsFramework::ViewportUi::ButtonId ColliderComponentMode::GetRotationButtonId() const { - return m_rotationModeButtonId; + return m_buttonIds[static_cast(SubMode::Rotation)]; } AzToolsFramework::ViewportUi::ButtonId ColliderComponentMode::GetDimensionsButtonId() const { - return m_dimensionsModeButtonId; + return m_buttonIds[static_cast(SubMode::Dimensions)]; + } + + AZStd::string ColliderComponentMode::GetComponentModeName() const + { + return "Collider Edit Mode"; } void RefreshUI() { /// The reason this is in a free function is because ColliderComponentMode /// privately inherits from ToolsApplicationNotificationBus. Trying to invoke - /// the bus inside the class scope causes the compiler to complain it's not accessible - /// to due private inheritence. - /// Using the global namespace operator :: should have fixed that, except there + /// the bus inside the class scope causes the compiler to complain it's not accessible + /// to due private inheritence. + /// Using the global namespace operator :: should have fixed that, except there /// is a bug in the microsoft compiler meaning it doesn't work. So this is a work around. AzToolsFramework::ToolsApplicationNotificationBus::Broadcast( - &AzToolsFramework::ToolsApplicationNotificationBus::Events::InvalidatePropertyDisplay, - AzToolsFramework::Refresh_Values); + &AzToolsFramework::ToolsApplicationNotificationBus::Events::InvalidatePropertyDisplay, AzToolsFramework::Refresh_Values); } void ColliderComponentMode::ResetCurrentMode() { m_subModes[m_subMode]->ResetValues(GetEntityComponentIdPair()); - m_subModes[m_subMode]->Refresh(GetEntityComponentIdPair()); + m_subModes[m_subMode]->Refresh(GetEntityComponentIdPair()); RefreshUI(); } @@ -225,8 +237,8 @@ namespace PhysX void ColliderComponentMode::RemoveSubModeSelectionCluster() { AzToolsFramework::ViewportUi::ViewportUiRequestBus::Event( - AzToolsFramework::ViewportUi::DefaultViewportId, - &AzToolsFramework::ViewportUi::ViewportUiRequestBus::Events::RemoveCluster, m_modeSelectionClusterId); + AzToolsFramework::ViewportUi::DefaultViewportId, &AzToolsFramework::ViewportUi::ViewportUiRequestBus::Events::RemoveCluster, + m_modeSelectionClusterId); } void ColliderComponentMode::CreateSubModeSelectionCluster() @@ -237,29 +249,37 @@ namespace PhysX &AzToolsFramework::ViewportUi::ViewportUiRequestBus::Events::CreateCluster, AzToolsFramework::ViewportUi::Alignment::TopLeft); // create and register the buttons - m_dimensionsModeButtonId = RegisterClusterButton(m_modeSelectionClusterId, "Scale"); - m_offsetModeButtonId = RegisterClusterButton(m_modeSelectionClusterId, "Move"); - m_rotationModeButtonId = RegisterClusterButton(m_modeSelectionClusterId, "Rotate"); + m_buttonIds.resize(static_cast(SubMode::NumModes)); + m_buttonIds[static_cast(SubMode::Offset)] = RegisterClusterButton(m_modeSelectionClusterId, "Move"); + m_buttonIds[static_cast(SubMode::Rotation)] = RegisterClusterButton(m_modeSelectionClusterId, "Rotate"); + m_buttonIds[static_cast(SubMode::Dimensions)] = RegisterClusterButton(m_modeSelectionClusterId, "Scale"); - const auto onButtonClicked = [this](AzToolsFramework::ViewportUi::ButtonId buttonId) { - if (buttonId == m_dimensionsModeButtonId) - { - SetCurrentMode(SubMode::Dimensions); - } - else if (buttonId == m_offsetModeButtonId) + SetCurrentMode(SubMode::Offset); + + const auto onButtonClicked = [this](AzToolsFramework::ViewportUi::ButtonId buttonId) + { + if (buttonId == m_buttonIds[static_cast(SubMode::Offset)]) { SetCurrentMode(SubMode::Offset); } - else if (buttonId == m_rotationModeButtonId) + else if (buttonId == m_buttonIds[static_cast(SubMode::Rotation)]) { SetCurrentMode(SubMode::Rotation); } + else if (buttonId == m_buttonIds[static_cast(SubMode::Dimensions)]) + { + SetCurrentMode(SubMode::Dimensions); + } + else + { + AZ_Error("PhysX Collider Component Mode", false, "Unrecognized button ID."); + } }; - + m_modeSelectionHandler = AZ::Event::Handler(onButtonClicked); AzToolsFramework::ViewportUi::ViewportUiRequestBus::Event( AzToolsFramework::ViewportUi::DefaultViewportId, - &AzToolsFramework::ViewportUi::ViewportUiRequestBus::Events::RegisterClusterEventHandler, - m_modeSelectionClusterId, m_modeSelectionHandler); + &AzToolsFramework::ViewportUi::ViewportUiRequestBus::Events::RegisterClusterEventHandler, m_modeSelectionClusterId, + m_modeSelectionHandler); } -} +} // namespace PhysX diff --git a/Gems/PhysX/Code/Editor/ColliderComponentMode.h b/Gems/PhysX/Code/Editor/ColliderComponentMode.h index b4ca060065..a756075513 100644 --- a/Gems/PhysX/Code/Editor/ColliderComponentMode.h +++ b/Gems/PhysX/Code/Editor/ColliderComponentMode.h @@ -31,21 +31,23 @@ namespace PhysX ColliderComponentMode(const AZ::EntityComponentIdPair& entityComponentIdPair, AZ::Uuid componentType); ~ColliderComponentMode(); - // EditorBaseComponentMode ... + // EditorBaseComponentMode overrides ... void Refresh() override; AZStd::vector PopulateActionsImpl() override; AZStd::vector PopulateViewportUiImpl() override; - // ColliderComponentModeBus ... + // ColliderComponentModeBus overrides ... SubMode GetCurrentMode() override; void SetCurrentMode(SubMode index) override; - // ColliderComponentModeUiBus ... + // ColliderComponentModeUiBus overrides ... AzToolsFramework::ViewportUi::ButtonId GetOffsetButtonId() const override; AzToolsFramework::ViewportUi::ButtonId GetRotationButtonId() const override; AzToolsFramework::ViewportUi::ClusterId GetClusterId() const override; AzToolsFramework::ViewportUi::ButtonId GetDimensionsButtonId() const override; + // ComponentMode overrides ... + AZStd::string GetComponentModeName() const override; private: // AzToolsFramework::ViewportInteraction::ViewportSelectionRequests ... @@ -63,12 +65,9 @@ namespace PhysX AzToolsFramework::ViewportUi::ClusterId m_modeSelectionClusterId; //!< Viewport UI cluster for changing sub mode. - AzToolsFramework::ViewportUi::ButtonId - m_dimensionsModeButtonId; //!< Id of the Viewport UI button for resize/dimensions mode. - AzToolsFramework::ViewportUi::ButtonId - m_offsetModeButtonId; //!< Id of the Viewport UI button for offset mode. - AzToolsFramework::ViewportUi::ButtonId - m_rotationModeButtonId; //!< Id of the Viewport UI button for rotation mode. + + AZStd::vector m_buttonIds; //!< Ids for the Viewport UI buttons for each mode. + AZ::Event::Handler m_modeSelectionHandler; //!< Event handler for sub mode changes. }; diff --git a/Gems/PhysX/Code/Editor/ColliderComponentModeBus.h b/Gems/PhysX/Code/Editor/ColliderComponentModeBus.h index 289215067a..05072f699a 100644 --- a/Gems/PhysX/Code/Editor/ColliderComponentModeBus.h +++ b/Gems/PhysX/Code/Editor/ColliderComponentModeBus.h @@ -19,9 +19,9 @@ namespace PhysX public: enum class SubMode : AZ::u32 { - Dimensions, Offset, Rotation, + Dimensions, NumModes }; diff --git a/Gems/PhysX/Code/Source/EditorColliderComponent.cpp b/Gems/PhysX/Code/Source/EditorColliderComponent.cpp index 262e40cb99..7e1d1c341f 100644 --- a/Gems/PhysX/Code/Source/EditorColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorColliderComponent.cpp @@ -760,7 +760,7 @@ namespace PhysX if (asset == m_shapeConfiguration.m_physicsAsset.m_pxAsset) { m_shapeConfiguration.m_physicsAsset.m_pxAsset = asset; - m_shapeConfiguration.m_physicsAsset.m_configuration.m_asset = m_shapeConfiguration.m_physicsAsset.m_pxAsset; + m_shapeConfiguration.m_physicsAsset.m_configuration.m_asset = asset; UpdateMaterialSlotsFromMeshAsset(); CreateStaticEditorCollider(); @@ -785,7 +785,9 @@ namespace PhysX { const PhysX::EditorRigidBodyComponent* entityRigidbody = m_entity->FindComponent(); - if (m_shapeConfiguration.m_physicsAsset.m_pxAsset && (m_shapeConfiguration.m_shapeType == Physics::ShapeType::PhysicsAsset) && entityRigidbody) + if (entityRigidbody && + m_shapeConfiguration.m_shapeType == Physics::ShapeType::PhysicsAsset && + m_shapeConfiguration.m_physicsAsset.m_pxAsset.IsReady()) { AZStd::vector> shapes; Utils::GetShapesFromAsset(m_shapeConfiguration.m_physicsAsset.m_configuration, m_configuration, m_hasNonUniformScale, diff --git a/Gems/PhysX/Code/Source/Platform/Android/PAL_android.cmake b/Gems/PhysX/Code/Source/Platform/Android/PAL_android.cmake index e6a2b35d36..1d078bb505 100644 --- a/Gems/PhysX/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/PhysX/Code/Source/Platform/Android/PAL_android.cmake @@ -7,5 +7,3 @@ # set(PAL_TRAIT_PHYSX_SUPPORTED TRUE) -set(PAL_TRAIT_JOINTS_TYPED_TEST_CASE FALSE) - diff --git a/Gems/PhysX/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/PhysX/Code/Source/Platform/Linux/PAL_linux.cmake index 0d9c4f1e3a..43c92ab916 100644 --- a/Gems/PhysX/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/PhysX/Code/Source/Platform/Linux/PAL_linux.cmake @@ -7,7 +7,6 @@ # set(PAL_TRAIT_PHYSX_SUPPORTED TRUE) -set(PAL_TRAIT_JOINTS_TYPED_TEST_CASE FALSE) if(PAL_TRAIT_BUILD_HOST_TOOLS) ly_associate_package(PACKAGE_NAME poly2tri-7f0487a-rev1-linux TARGETS poly2tri PACKAGE_HASH b16eef8f0bc469de0e3056d28d7484cf42659667e39b68b239f0d3a4cbb533d0) diff --git a/Gems/PhysX/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/PhysX/Code/Source/Platform/Mac/PAL_mac.cmake index 141a80ae59..992280bceb 100644 --- a/Gems/PhysX/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/PhysX/Code/Source/Platform/Mac/PAL_mac.cmake @@ -7,7 +7,6 @@ # set(PAL_TRAIT_PHYSX_SUPPORTED TRUE) -set(PAL_TRAIT_JOINTS_TYPED_TEST_CASE FALSE) if(PAL_TRAIT_BUILD_HOST_TOOLS) ly_associate_package(PACKAGE_NAME poly2tri-7f0487a-rev1-mac TARGETS poly2tri PACKAGE_HASH 23e49e6b06d79327985d17b40bff20ab202519c283a842378f5f1791c1bf8dbc) diff --git a/Gems/PhysX/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/PhysX/Code/Source/Platform/Windows/PAL_windows.cmake index 7abd7ab9e9..336bb89c40 100644 --- a/Gems/PhysX/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/PhysX/Code/Source/Platform/Windows/PAL_windows.cmake @@ -7,7 +7,6 @@ # set(PAL_TRAIT_PHYSX_SUPPORTED TRUE) -set(PAL_TRAIT_JOINTS_TYPED_TEST_CASE TRUE) if(PAL_TRAIT_BUILD_HOST_TOOLS) ly_associate_package(PACKAGE_NAME poly2tri-7f0487a-rev1-windows TARGETS poly2tri PACKAGE_HASH 5fea2bf294e5130e0654fbfa39f192e6369f3853901dde90bb9b3f3a11edcb1e) diff --git a/Gems/PhysX/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/PhysX/Code/Source/Platform/iOS/PAL_ios.cmake index 6316fa60c6..1d078bb505 100644 --- a/Gems/PhysX/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/PhysX/Code/Source/Platform/iOS/PAL_ios.cmake @@ -7,4 +7,3 @@ # set(PAL_TRAIT_PHYSX_SUPPORTED TRUE) -set(PAL_TRAIT_JOINTS_TYPED_TEST_CASE FALSE) diff --git a/Gems/PhysX/Code/Tests/PhysXColliderComponentModeTests.cpp b/Gems/PhysX/Code/Tests/PhysXColliderComponentModeTests.cpp index 1f393386f8..2b5db1be67 100644 --- a/Gems/PhysX/Code/Tests/PhysXColliderComponentModeTests.cpp +++ b/Gems/PhysX/Code/Tests/PhysXColliderComponentModeTests.cpp @@ -66,7 +66,7 @@ namespace UnitTest PhysX::ColliderComponentModeRequests::SubMode subMode = PhysX::ColliderComponentModeRequests::SubMode::NumModes; PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); // When the mouse wheel is scrolled while holding ctrl AzToolsFramework::ViewportInteraction::MouseInteractionEvent @@ -84,7 +84,7 @@ namespace UnitTest // Then the component mode is cycled. PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); EXPECT_EQ(handled, MouseInteractionResult::Viewport); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); } TEST_F(PhysXColliderComponentModeTest, MouseWheelDownShouldSetPreviousMode) @@ -95,7 +95,7 @@ namespace UnitTest PhysX::ColliderComponentModeRequests::SubMode subMode = PhysX::ColliderComponentModeRequests::SubMode::NumModes; PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); // When the mouse wheel is scrolled while holding ctrl AzToolsFramework::ViewportInteraction::MouseInteractionEvent @@ -116,7 +116,7 @@ namespace UnitTest EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Rotation, subMode); } - TEST_F(PhysXColliderComponentModeTest, PressingKey1ShouldSetSizeMode) + TEST_F(PhysXColliderComponentModeTest, PressingKey1ShouldSetOffsetMode) { // Given there is a collider component in component mode. CreateColliderComponent(); @@ -124,17 +124,17 @@ namespace UnitTest PhysX::ColliderComponentModeRequests::SubMode subMode = PhysX::ColliderComponentModeRequests::SubMode::NumModes; PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); // When the '1' key is pressed QTest::keyPress(&m_editorActions.m_componentModeWidget, Qt::Key_1); - // Then the component mode is set to Size. + // Then the component mode is set to Offset. PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); } - TEST_F(PhysXColliderComponentModeTest, PressingKey2ShouldSetSizeMode) + TEST_F(PhysXColliderComponentModeTest, PressingKey2ShouldSetRotationMode) { // Given there is a collider component in component mode. auto colliderEntity = CreateColliderComponent(); @@ -143,14 +143,14 @@ namespace UnitTest PhysX::ColliderComponentModeRequests::SubMode subMode = PhysX::ColliderComponentModeRequests::SubMode::NumModes; PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); // When the '2' key is pressed QTest::keyPress(&m_editorActions.m_componentModeWidget, Qt::Key_2); - // Then the component mode is set to Offset. + // Then the component mode is set to Rotation. PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Rotation, subMode); } TEST_F(PhysXColliderComponentModeTest, PressingKey3ShouldSetSizeMode) @@ -162,14 +162,14 @@ namespace UnitTest PhysX::ColliderComponentModeRequests::SubMode subMode = PhysX::ColliderComponentModeRequests::SubMode::NumModes; PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); // When the '3' key is pressed QTest::keyPress(&m_editorActions.m_componentModeWidget, Qt::Key_3); - // Then the component mode is set to Rotation. + // Then the component mode is set to Size. PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Rotation, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); } TEST_F(PhysXColliderComponentModeTest, PressingKeyRShouldResetSphereRadius) @@ -292,7 +292,7 @@ namespace UnitTest // Check preconditions PhysX::ColliderComponentModeRequests::SubMode subMode = PhysX::ColliderComponentModeRequests::SubMode::NumModes; PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); // Get the cluster and button Ids AzToolsFramework::ViewportUi::ClusterId modeSelectionClusterId; @@ -327,7 +327,7 @@ namespace UnitTest // Check preconditions PhysX::ColliderComponentModeRequests::SubMode subMode = PhysX::ColliderComponentModeRequests::SubMode::NumModes; PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); // Get the cluster and button Ids AzToolsFramework::ViewportUi::ClusterId modeSelectionClusterId; @@ -362,7 +362,7 @@ namespace UnitTest // Check preconditions PhysX::ColliderComponentModeRequests::SubMode subMode = PhysX::ColliderComponentModeRequests::SubMode::NumModes; PhysX::ColliderComponentModeRequestBus::BroadcastResult(subMode, &PhysX::ColliderComponentModeRequests::GetCurrentMode); - EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Dimensions, subMode); + EXPECT_EQ(PhysX::ColliderComponentModeRequests::SubMode::Offset, subMode); // Get the cluster and button Ids AzToolsFramework::ViewportUi::ClusterId modeSelectionClusterId; diff --git a/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp b/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp index 3a7eac0884..8a624e0223 100644 --- a/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp @@ -267,8 +267,6 @@ namespace PhysX EXPECT_GT(followerEndPosition.GetZ(), followerPosition.GetZ()); } -// for some reason TYPED_TEST_CASE with the fixture is not working on Android + Linux -#ifdef ENABLE_JOINTS_TYPED_TEST_CASE template class PhysXJointsApiTest : public PhysX::GenericPhysicsInterfaceTest { @@ -347,5 +345,4 @@ namespace PhysX EXPECT_GT(childCurrentPos.GetX(), this->m_childInitialPos.GetX()); } -#endif // ENABLE_JOINTS_TYPED_TEST_CASE } diff --git a/Gems/QtForPython/Code/Source/Platform/Linux/InitializeEmbeddedPyside2.h b/Gems/QtForPython/Code/Source/Platform/Linux/InitializeEmbeddedPyside2.h index f27b54810f..094a4f8548 100644 --- a/Gems/QtForPython/Code/Source/Platform/Linux/InitializeEmbeddedPyside2.h +++ b/Gems/QtForPython/Code/Source/Platform/Linux/InitializeEmbeddedPyside2.h @@ -38,7 +38,7 @@ namespace QtForPython void* moduleHandle = dlopen(moduleToLoad, RTLD_NOW | RTLD_GLOBAL); if (!moduleHandle) { - const char* loadError = dlerror(); + [[maybe_unused]] const char* loadError = dlerror(); AZ_Error("QtForPython", false, "Unable to load python library %s for Pyside2: %s", moduleToLoad, loadError ? loadError : "Unknown Error"); } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionBeginevent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionBeginevent.names index 98a2d3f85b..d77596c36e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionBeginevent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionBeginevent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "On Collision Begin event", + "base": "On Collision Begin event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,49 +9,49 @@ }, "slots": [ { - "key": "Simulated Body Handle", + "base": "Simulated Body Handle", "details": { "name": "Simulated Body Handle" } }, { - "key": "Collision Event", + "base": "Collision Event", "details": { "name": "Collision Event" } }, { - "key": "On Collision Begin event", + "base": "On Collision Begin event", "details": { "name": "On Collision Begin event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionEndevent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionEndevent.names index 4844732dd4..1d2c622e8c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionEndevent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionEndevent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "On Collision End event", + "base": "On Collision End event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,49 +9,49 @@ }, "slots": [ { - "key": "Simulated Body Handle", + "base": "Simulated Body Handle", "details": { "name": "Simulated Body Handle" } }, { - "key": "Collision Event", + "base": "Collision Event", "details": { "name": "Collision Event" } }, { - "key": "On Collision End event", + "base": "On Collision End event", "details": { "name": "On Collision End event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionPersistevent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionPersistevent.names index 7ee4cd8f5c..c685623d88 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionPersistevent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnCollisionPersistevent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "On Collision Persist event", + "base": "On Collision Persist event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,49 +9,49 @@ }, "slots": [ { - "key": "Simulated Body Handle", + "base": "Simulated Body Handle", "details": { "name": "Simulated Body Handle" } }, { - "key": "Collision Event", + "base": "Collision Event", "details": { "name": "Collision Event" } }, { - "key": "On Collision Persist event", + "base": "On Collision Persist event", "details": { "name": "On Collision Persist event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnGravityChangedevent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnGravityChangedevent.names index 7841a0bc78..dce2578ca9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnGravityChangedevent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnGravityChangedevent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "On Gravity Changed event", + "base": "On Gravity Changed event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,49 +9,49 @@ }, "slots": [ { - "key": "Scene Handle", + "base": "Scene Handle", "details": { "name": "Scene Handle" } }, { - "key": "Gravity Vector", + "base": "Gravity Vector", "details": { "name": "Gravity Vector" } }, { - "key": "On Gravity Changed event", + "base": "On Gravity Changed event", "details": { "name": "On Gravity Changed event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnTriggerEnterevent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnTriggerEnterevent.names index b1adfeb30b..0850092f0f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnTriggerEnterevent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnTriggerEnterevent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "On Trigger Enter event", + "base": "On Trigger Enter event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,49 +9,49 @@ }, "slots": [ { - "key": "Simulated Body Handle", + "base": "Simulated Body Handle", "details": { "name": "Simulated Body Handle" } }, { - "key": "Trigger Event", + "base": "Trigger Event", "details": { "name": "Trigger Event" } }, { - "key": "On Trigger Enter event", + "base": "On Trigger Enter event", "details": { "name": "On Trigger Enter event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnTriggerExitevent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnTriggerExitevent.names index 0c70ada73d..87c1c8e65f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnTriggerExitevent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/OnTriggerExitevent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "On Trigger Exit event", + "base": "On Trigger Exit event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,49 +9,49 @@ }, "slots": [ { - "key": "Simulated Body Handle", + "base": "Simulated Body Handle", "details": { "name": "Simulated Body Handle" } }, { - "key": "Trigger Event", + "base": "Trigger Event", "details": { "name": "Trigger Event" } }, { - "key": "On Trigger Exit event", + "base": "On Trigger Exit event", "details": { "name": "On Trigger Exit event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/Postsimulateevent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/Postsimulateevent.names index 3cbbe32b4d..cbf2b98cb2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/Postsimulateevent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/Postsimulateevent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Postsimulate event", + "base": "Postsimulate event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,43 +9,43 @@ }, "slots": [ { - "key": "Tick time", + "base": "Tick time", "details": { "name": "Tick time" } }, { - "key": "Postsimulate event", + "base": "Postsimulate event", "details": { "name": "Postsimulate event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/Presimulateevent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/Presimulateevent.names index d3fb8cca6e..d71831f458 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/Presimulateevent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/Presimulateevent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Presimulate event", + "base": "Presimulate event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,43 +9,43 @@ }, "slots": [ { - "key": "Tick time", + "base": "Tick time", "details": { "name": "Tick time" } }, { - "key": "Presimulate event", + "base": "Presimulate event", "details": { "name": "Presimulate event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/SettingsRegistryNotifyEvent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/SettingsRegistryNotifyEvent.names index 09ec65d790..6460d967b9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/SettingsRegistryNotifyEvent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/AZEvents/SettingsRegistryNotifyEvent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SettingsRegistry Notify Event", + "base": "SettingsRegistry Notify Event", "context": "AZEventHandler", "variant": "", "details": { @@ -9,43 +9,43 @@ }, "slots": [ { - "key": "Json Path", + "base": "Json Path", "details": { "name": "Json Path" } }, { - "key": "SettingsRegistry Notify Event", + "base": "SettingsRegistry Notify Event", "details": { "name": "SettingsRegistry Notify Event" } }, { - "key": "Connect", + "base": "Connect", "details": { "name": "Connect" } }, { - "key": "Disconnect", + "base": "Disconnect", "details": { "name": "Disconnect" } }, { - "key": "On Connected", + "base": "On Connected", "details": { "name": "On Connected" } }, { - "key": "On Disconnected", + "base": "On Disconnected", "details": { "name": "On Disconnected" } }, { - "key": "OnEvent", + "base": "OnEvent", "details": { "name": "OnEvent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_AttributesSubmissionList.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_AttributesSubmissionList.names index e0c9852e54..68e19cbfca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_AttributesSubmissionList.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_AttributesSubmissionList.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSMetrics_AttributesSubmissionList", + "base": "AWSMetrics_AttributesSubmissionList", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "Getattributes", + "base": "Getattributes", "details": { "name": "Get Attributes" }, @@ -32,7 +32,7 @@ ] }, { - "key": "Setattributes", + "base": "Setattributes", "details": { "name": "Set Attributes" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_MetricsAttribute.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_MetricsAttribute.names index 57a94769b0..a3ac9a92c5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_MetricsAttribute.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_MetricsAttribute.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSMetrics_MetricsAttribute", + "base": "AWSMetrics_MetricsAttribute", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetName", + "base": "SetName", "context": "AWSMetrics_MetricsAttribute", "entry": { "name": "In", @@ -39,7 +39,7 @@ ] }, { - "key": "SetStrValue", + "base": "SetStrValue", "context": "AWSMetrics_MetricsAttribute", "entry": { "name": "In", @@ -68,7 +68,7 @@ ] }, { - "key": "SetIntValue", + "base": "SetIntValue", "context": "AWSMetrics_MetricsAttribute", "entry": { "name": "In", @@ -97,7 +97,7 @@ ] }, { - "key": "SetDoubleValue", + "base": "SetDoubleValue", "context": "AWSMetrics_MetricsAttribute", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorDynamoDB.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorDynamoDB.names index 3d9e963484..46ba1bad8d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorDynamoDB.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorDynamoDB.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSScriptBehaviorDynamoDB", + "base": "AWSScriptBehaviorDynamoDB", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetItem", + "base": "GetItem", "context": "AWSScriptBehaviorDynamoDB", "entry": { "name": "In", @@ -40,7 +40,7 @@ ] }, { - "key": "GetItemRaw", + "base": "GetItemRaw", "context": "AWSScriptBehaviorDynamoDB", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorLambda.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorLambda.names index 9ee4a606b9..db4a42a152 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorLambda.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorLambda.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSScriptBehaviorLambda", + "base": "AWSScriptBehaviorLambda", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "Invoke", + "base": "Invoke", "context": "AWSScriptBehaviorLambda", "entry": { "name": "In", @@ -39,7 +39,7 @@ ] }, { - "key": "InvokeRaw", + "base": "InvokeRaw", "context": "AWSScriptBehaviorLambda", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorS3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorS3.names index 7630385d28..c4dd1d5827 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorS3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorS3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSScriptBehaviorS3", + "base": "AWSScriptBehaviorS3", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetObject", + "base": "GetObject", "context": "AWSScriptBehaviorS3", "entry": { "name": "In", @@ -45,7 +45,7 @@ ] }, { - "key": "GetObjectRaw", + "base": "GetObjectRaw", "context": "AWSScriptBehaviorS3", "entry": { "name": "In", @@ -86,7 +86,7 @@ ] }, { - "key": "HeadObject", + "base": "HeadObject", "context": "AWSScriptBehaviorS3", "entry": { "name": "In", @@ -115,7 +115,7 @@ ] }, { - "key": "HeadObjectRaw", + "base": "HeadObjectRaw", "context": "AWSScriptBehaviorS3", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AZ__SceneAPI__Containers__SceneGraph.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AZ__SceneAPI__Containers__SceneGraph.names new file mode 100644 index 0000000000..9526e9d8af --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AZ__SceneAPI__Containers__SceneGraph.names @@ -0,0 +1,581 @@ +{ + "entries": [ + { + "base": "AZ::SceneAPI::Containers::SceneGraph", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Scene Graph", + "category": "Scene Graph" + }, + "methods": [ + { + "base": "GetNodeChild", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Node Child" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Node Child is invoked" + }, + "details": { + "name": "Get Node Child" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ] + }, + { + "base": "FindWithPath", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Find With Path" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Find With Path is invoked" + }, + "details": { + "name": "Find With Path" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Path" + } + } + ], + "results": [ + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ] + }, + { + "base": "HasNodeChild", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Has Node Child" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Has Node Child is invoked" + }, + "details": { + "name": "Has Node Child" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Has Node Child" + } + } + ] + }, + { + "base": "HasNodeParent", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Has Node Parent" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Has Node Parent is invoked" + }, + "details": { + "name": "Has Node Parent" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Has Node Parent" + } + } + ] + }, + { + "base": "GetNodeSibling", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Node Sibling" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Node Sibling is invoked" + }, + "details": { + "name": "Get Node Sibling" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ] + }, + { + "base": "HasNodeSibling", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Has Node Sibling" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Has Node Sibling is invoked" + }, + "details": { + "name": "Has Node Sibling" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Has Node Sibling" + } + } + ] + }, + { + "base": "IsNodeEndPoint", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Is Node End Point" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Is Node End Point is invoked" + }, + "details": { + "name": "Is Node End Point" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Node End Point" + } + } + ] + }, + { + "base": "GetNodeCount", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Node Count" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Node Count is invoked" + }, + "details": { + "name": "Get Node Count" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + } + ], + "results": [ + { + "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", + "details": { + "name": "Node Count" + } + } + ] + }, + { + "base": "HasNodeContent", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Has Node Content" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Has Node Content is invoked" + }, + "details": { + "name": "Has Node Content" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Has Node Content" + } + } + ] + }, + { + "base": "GetNodeContent", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Node Content" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Node Content is invoked" + }, + "details": { + "name": "Get Node Content" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{3EF0DDEC-C734-4804-BE99-82058FEBDA71}", + "details": { + "name": "Graph Object Proxy" + } + } + ] + }, + { + "base": "GetNodeName", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Node Name" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Node Name is invoked" + }, + "details": { + "name": "Get Node Name" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{4077AC3C-B301-4F5A-BEA7-54D6511AEC2E}", + "details": { + "name": "Node Name" + } + } + ] + }, + { + "base": "GetRoot", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Root" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Root is invoked" + }, + "details": { + "name": "Get Root" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + } + ], + "results": [ + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ] + }, + { + "base": "GetNodeSeperationCharacter", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Node Separation Character" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Node Separation Character is invoked" + }, + "details": { + "name": "Get Node Separation Character" + }, + "results": [ + { + "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", + "details": { + "name": "Separation Character" + } + } + ] + }, + { + "base": "GetNodeParent", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Node Parent" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Node Parent is invoked" + }, + "details": { + "name": "Get Node Parent" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ], + "results": [ + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ] + }, + { + "base": "FindWithRootAndPath", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Find With Root And Path" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Find With Root And Path is invoked" + }, + "details": { + "name": "Find With Root And Path" + }, + "params": [ + { + "typeid": "{CAC6556D-D5FE-4D0E-BCCD-8940357C1D35}", + "details": { + "name": "Scene Graph" + } + }, + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Path" + } + } + ], + "results": [ + { + "typeid": "{4AD18037-E629-480D-8165-997A137327FD}", + "details": { + "name": "Node Index" + } + } + ] + }, + { + "base": "IsValidName", + "context": "AZ::SceneAPI::Containers::SceneGraph", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Is Valid Name" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Is Valid Name is invoked" + }, + "details": { + "name": "Is Valid Name" + }, + "params": [ + { + "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", + "details": { + "name": "Name" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Valid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AZ__SceneAPI__DataTypes__IMeshData__Face.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AZ__SceneAPI__DataTypes__IMeshData__Face.names new file mode 100644 index 0000000000..49dd69edf3 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AZ__SceneAPI__DataTypes__IMeshData__Face.names @@ -0,0 +1,52 @@ +{ + "entries": [ + { + "base": "AZ::SceneAPI::DataTypes::IMeshData::Face", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Mesh Data Face", + "category": "Scene Graph" + }, + "methods": [ + { + "base": "GetVertexIndex", + "context": "AZ::SceneAPI::DataTypes::IMeshData::Face", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Vertex Index" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Vertex Index is invoked" + }, + "details": { + "name": "Get Vertex Index" + }, + "params": [ + { + "typeid": "{F9F49C1A-014F-46F5-A46F-B56D8CB46C2B}", + "details": { + "name": "Mesh Data Face" + } + }, + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "Face Index" + } + } + ], + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "Index" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AcesParameterOverrides.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AcesParameterOverrides.names index 50a563d9c4..d1c7a70e04 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AcesParameterOverrides.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AcesParameterOverrides.names @@ -1,33 +1,313 @@ { "entries": [ { - "key": "AcesParameterOverrides", + "base": "AcesParameterOverrides", "context": "BehaviorClass", "variant": "", "details": { - "name": "AcesParameterOverrides" + "name": "Aces Parameter Overrides", + "category": "Rendering" }, "methods": [ { - "key": "LoadPreset", + "base": "LoadPreset", "context": "AcesParameterOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke LoadPreset" + "tooltip": "When signaled, this will invoke Load Preset" }, "exit": { "name": "Out", - "tooltip": "Signaled after LoadPreset is invoked" + "tooltip": "Signaled after Load Preset is invoked" }, "details": { - "name": "AcesParameterOverrides::LoadPreset", - "category": "Other" + "name": "Load Preset" }, "params": [ { "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", "details": { - "name": "AcesParameterOverrides*" + "name": "Aces Parameter Overrides" + } + } + ] + }, + { + "base": "GetOutputDeviceTransformType_4000Nits", + "details": { + "name": "Get Output Device Transform Type_ 4000 Nits" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + }, + { + "base": "GetOutputDeviceTransformType_2000Nits", + "details": { + "name": "Get Output Device Transform Type_ 2000 Nits" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + }, + { + "base": "GetapplyCATD60toD65", + "details": { + "name": "GetapplyCATD 60toD 65" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "SetapplyCATD60toD65", + "details": { + "name": "SetapplyCATD 60toD 65" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + }, + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "GetOutputDeviceTransformType_48Nits", + "details": { + "name": "Get Output Device Transform Type_ 48 Nits" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + }, + { + "base": "GetOutputDeviceTransformType_NumOutputDeviceTransformTypes", + "details": { + "name": "Get Output Device Transform Type_ Num Output Device Transform Types" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + }, + { + "base": "GetOutputDeviceTransformType_1000Nits", + "details": { + "name": "Get Output Device Transform Type_ 1000 Nits" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + }, + { + "base": "GetapplyDesaturation", + "details": { + "name": "Getapply Desaturation" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "SetapplyDesaturation", + "details": { + "name": "Setapply Desaturation" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + }, + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "Getpreset", + "details": { + "name": "Getpreset" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{B94085B7-C0D4-466A-A791-188A4559EC8D}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "Setpreset", + "details": { + "name": "Setpreset" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + }, + { + "typeid": "{B94085B7-C0D4-466A-A791-188A4559EC8D}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "GetalterSurround", + "details": { + "name": "Getalter Surround" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "SetalterSurround", + "details": { + "name": "Setalter Surround" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + }, + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "GetoverrideDefaults", + "details": { + "name": "Getoverride Defaults" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "SetoverrideDefaults", + "details": { + "name": "Setoverride Defaults" + }, + "params": [ + { + "typeid": "{3EE8C0D4-3792-46C0-B91C-B89A81C36B91}", + "details": { + "name": "" + } + }, + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ActorComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ActorComponent.names index a87e636a17..b6092e23f7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ActorComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ActorComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ActorComponent", + "base": "ActorComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AnimationData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AnimationData.names index 54155ecbde..d026c998ba 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AnimationData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AnimationData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AnimationData", + "base": "AnimationData", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetData.names index c7fd08013f..c9a8cfe791 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AssetData", + "base": "AssetData", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetUseCount", + "base": "GetUseCount", "context": "AssetData", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "IsLoading", + "base": "IsLoading", "context": "AssetData", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "IsError", + "base": "IsError", "context": "AssetData", "entry": { "name": "In", @@ -110,7 +110,7 @@ ] }, { - "key": "IsReady", + "base": "IsReady", "context": "AssetData", "entry": { "name": "In", @@ -141,7 +141,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "AssetData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetId.names index 0cebae5057..18c20bbd5a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetId.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AssetId", + "base": "AssetId", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateString", + "base": "CreateString", "context": "AssetId", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "IsValid", + "base": "IsValid", "context": "AssetId", "entry": { "name": "In", @@ -72,7 +72,7 @@ ] }, { - "key": "ToString", + "base": "ToString", "context": "AssetId", "entry": { "name": "In", @@ -103,7 +103,7 @@ ] }, { - "key": "IsEqual", + "base": "IsEqual", "context": "AssetId", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetInfo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetInfo.names index 3c14063340..39abff351c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetInfo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AssetInfo.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AssetInfo", + "base": "AssetInfo", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "assetId", + "base": "assetId", "details": { "name": "Get Asset Id" }, @@ -31,7 +31,7 @@ ] }, { - "key": "assetType", + "base": "assetType", "details": { "name": "Get Asset Type" }, @@ -53,7 +53,7 @@ ] }, { - "key": "sizeBytes", + "base": "sizeBytes", "details": { "name": "Get Size (Bytes)" }, @@ -75,7 +75,7 @@ ] }, { - "key": "relativePath", + "base": "relativePath", "details": { "name": "Get Relative Path" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AtomToolsDocumentSystemSettings.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AtomToolsDocumentSystemSettings.names index 8cb330e91d..b5c7982730 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AtomToolsDocumentSystemSettings.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AtomToolsDocumentSystemSettings.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AtomToolsDocumentSystemSettings", + "base": "AtomToolsDocumentSystemSettings", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetshowReloadDocumentPrompt", + "base": "GetshowReloadDocumentPrompt", "details": { "name": "Get Show Reload Document Prompt" }, @@ -32,7 +32,7 @@ ] }, { - "key": "SetshowReloadDocumentPrompt", + "base": "SetshowReloadDocumentPrompt", "details": { "name": "Set Show Reload Document Prompt" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names index fde350b776..c041aa00ff 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AuthenticationTokens", + "base": "AuthenticationTokens", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetAccessToken", + "base": "GetAccessToken", "details": { "name": "Get Access Token" }, @@ -32,7 +32,7 @@ ] }, { - "key": "SetAccessToken", + "base": "SetAccessToken", "details": { "name": "Set Access Token" }, @@ -52,7 +52,7 @@ ] }, { - "key": "GetOpenIdToken", + "base": "GetOpenIdToken", "context": "getter", "details": { "name": "Get OpenId Token" @@ -75,7 +75,7 @@ ] }, { - "key": "SetOpenIdToken", + "base": "SetOpenIdToken", "context": "setter", "details": { "name": "Set OpenId Token" @@ -96,7 +96,7 @@ ] }, { - "key": "GetRefreshToken", + "base": "GetRefreshToken", "context": "getter", "details": { "name": "Get Refresh Token" @@ -119,7 +119,7 @@ ] }, { - "key": "SetRefreshToken", + "base": "SetRefreshToken", "context": "setter", "details": { "name": "Set Refresh Token" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AxisType.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AxisType.names index 005a2d564e..c5fc0fe1f3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AxisType.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AxisType.names @@ -1,12 +1,99 @@ { "entries": [ { - "key": "AxisType", + "base": "AxisType", "context": "BehaviorClass", "variant": "", "details": { - "name": "AxisType" - } + "name": "Axis Type", + "category": "Constants" + }, + "methods": [ + { + "base": "GetZNegative", + "details": { + "name": "Get -Z" + }, + "results": [ + { + "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", + "details": { + "name": "-Z" + } + } + ] + }, + { + "base": "GetZPositive", + "details": { + "name": "Get +Z" + }, + "results": [ + { + "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", + "details": { + "name": "+Z" + } + } + ] + }, + { + "base": "GetYPositive", + "details": { + "name": "Get +Y" + }, + "results": [ + { + "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", + "details": { + "name": "+Y" + } + } + ] + }, + { + "base": "GetXNegative", + "details": { + "name": "Get -X" + }, + "results": [ + { + "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", + "details": { + "name": "-X" + } + } + ] + }, + { + "base": "GetXPositive", + "details": { + "name": "Get +X" + }, + "results": [ + { + "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", + "details": { + "name": "+X" + } + } + ] + }, + { + "base": "GetYNegative", + "details": { + "name": "Get -Y" + }, + "results": [ + { + "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", + "details": { + "name": "-Y" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AzFramework__SurfaceData__SurfacePoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AzFramework__SurfaceData__SurfacePoint.names index dfcbac7dad..b78273d630 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AzFramework__SurfaceData__SurfacePoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AzFramework__SurfaceData__SurfacePoint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AzFramework::SurfaceData::SurfacePoint", + "base": "AzFramework::SurfaceData::SurfacePoint", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "Getposition", + "base": "Getposition", "details": { "name": "Get Position" }, @@ -32,7 +32,7 @@ ] }, { - "key": "Setposition", + "base": "Setposition", "details": { "name": "Set Position" }, @@ -52,7 +52,7 @@ ] }, { - "key": "Getnormal", + "base": "Getnormal", "details": { "name": "Get Normal" }, @@ -74,7 +74,7 @@ ] }, { - "key": "Setnormal", + "base": "Setnormal", "details": { "name": "Set Normal" }, @@ -94,7 +94,7 @@ ] }, { - "key": "GetsurfaceTags", + "base": "GetsurfaceTags", "details": { "name": "Get Surface Tags" }, @@ -116,7 +116,7 @@ ] }, { - "key": "SetsurfaceTags", + "base": "SetsurfaceTags", "details": { "name": "Set Surface Tags" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlastActorData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlastActorData.names new file mode 100644 index 0000000000..04aa2f21c2 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlastActorData.names @@ -0,0 +1,105 @@ +{ + "entries": [ + { + "base": "BlastActorData", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Actor Data", + "category": "Blast" + }, + "methods": [ + { + "base": "GetEntityId", + "details": { + "name": "Get Entity Id" + }, + "params": [ + { + "typeid": "{A23453D5-79A8-49C8-B9F0-9CC35D711DD4}", + "details": { + "name": "Blast Actor Data*", + "tooltip": "Represents Blast Actor in a Script Canvas friendly format." + } + } + ], + "results": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + } + ] + }, + { + "base": "SetEntityId", + "details": { + "name": "Set Entity Id" + }, + "params": [ + { + "typeid": "{A23453D5-79A8-49C8-B9F0-9CC35D711DD4}", + "details": { + "name": "Blast Actor Data*", + "tooltip": "Represents Blast Actor in a Script Canvas friendly format." + } + }, + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + } + ] + }, + { + "base": "GetIsStatic", + "details": { + "name": "Get Is Static" + }, + "params": [ + { + "typeid": "{A23453D5-79A8-49C8-B9F0-9CC35D711DD4}", + "details": { + "name": "Blast Actor Data*", + "tooltip": "Represents Blast Actor in a Script Canvas friendly format." + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Static" + } + } + ] + }, + { + "base": "SetIsStatic", + "details": { + "name": "Set Is Static" + }, + "params": [ + { + "typeid": "{A23453D5-79A8-49C8-B9F0-9CC35D711DD4}", + "details": { + "name": "Blast Actor Data*", + "tooltip": "Represents Blast Actor in a Script Canvas friendly format." + } + }, + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Static" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeAnimationData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeAnimationData.names index 640613b7b0..61b54272a5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeAnimationData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeAnimationData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "BlendShapeAnimationData", + "base": "BlendShapeAnimationData", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeData.names index f450864610..d6a19b9837 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeData.names @@ -1,45 +1,44 @@ { "entries": [ { - "key": "BlendShapeData", + "base": "BlendShapeData", "context": "BehaviorClass", "variant": "", "details": { - "name": "BlendShapeData" + "name": "Blend Shape Data" }, "methods": [ { - "key": "GetUV", + "base": "GetUV", "context": "BlendShapeData", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetUV" + "tooltip": "When signaled, this will invoke Get UV" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetUV is invoked" + "tooltip": "Signaled after Get UV is invoked" }, "details": { - "name": "BlendShapeData::GetUV", - "category": "Other" + "name": "Get UV" }, "params": [ { "typeid": "{FF875C22-2E4F-4CE3-BA49-09BF78C70A09}", "details": { - "name": "BlendShapeData*" + "name": "Blend Shape Data" } }, { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Vertex Index" } }, { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "UV Set Index" } } ], @@ -47,37 +46,36 @@ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "const Vector2&" + "name": "UV" } } ] }, { - "key": "GetTangent", + "base": "GetTangent", "context": "BlendShapeData", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTangent" + "tooltip": "When signaled, this will invoke Get Tangent" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTangent is invoked" + "tooltip": "Signaled after Get Tangent is invoked" }, "details": { - "name": "BlendShapeData::GetTangent", - "category": "Other" + "name": "Get Tangent" }, "params": [ { "typeid": "{FF875C22-2E4F-4CE3-BA49-09BF78C70A09}", "details": { - "name": "const BlendShapeData&" + "name": "Blend Shape Data" } }, { "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", "details": { - "name": "AZ::u64" + "name": "Index" } } ], @@ -85,37 +83,36 @@ { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4" + "name": "Tangents" } } ] }, { - "key": "GetBitangent", + "base": "GetBitangent", "context": "BlendShapeData", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetBitangent" + "tooltip": "When signaled, this will invoke Get Bitangent" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetBitangent is invoked" + "tooltip": "Signaled after Get Bitangent is invoked" }, "details": { - "name": "BlendShapeData::GetBitangent", - "category": "Other" + "name": "Get Bi-Tangent" }, "params": [ { "typeid": "{FF875C22-2E4F-4CE3-BA49-09BF78C70A09}", "details": { - "name": "const BlendShapeData&" + "name": "Blend Shape Data" } }, { "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", "details": { - "name": "AZ::u64" + "name": "Index" } } ], @@ -123,43 +120,42 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Bi-Tangent" } } ] }, { - "key": "GetColor", + "base": "GetColor", "context": "BlendShapeData", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetColor" + "tooltip": "When signaled, this will invoke Get Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetColor is invoked" + "tooltip": "Signaled after Get Color is invoked" }, "details": { - "name": "BlendShapeData::GetColor", - "category": "Other" + "name": "Get Color" }, "params": [ { "typeid": "{FF875C22-2E4F-4CE3-BA49-09BF78C70A09}", "details": { - "name": "const BlendShapeData&" + "name": "Blend Shape Data" } }, { "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", "details": { - "name": "unsigned char" + "name": "Color Set Index" } }, { "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", "details": { - "name": "unsigned char" + "name": "Color Index" } } ], @@ -167,7 +163,7 @@ { "typeid": "{937E3BF8-5204-4D40-A8DA-C8F083C89F9F}", "details": { - "name": "SceneAPI::DataTypes::Color" + "name": "Color" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeDataFace.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeDataFace.names index 2d4d4c2f92..abbdfd2f2f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeDataFace.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BlendShapeDataFace.names @@ -1,39 +1,38 @@ { "entries": [ { - "key": "BlendShapeDataFace", + "base": "BlendShapeDataFace", "context": "BehaviorClass", "variant": "", "details": { - "name": "BlendShapeDataFace" + "name": "Blend Shape Data Face" }, "methods": [ { - "key": "GetVertexIndex", + "base": "GetVertexIndex", "context": "BlendShapeDataFace", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetVertexIndex" + "tooltip": "When signaled, this will invoke Get Vertex Index" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetVertexIndex is invoked" + "tooltip": "Signaled after Get Vertex Index is invoked" }, "details": { - "name": "BlendShapeDataFace::GetVertexIndex", - "category": "Other" + "name": "Get Vertex Index" }, "params": [ { "typeid": "{C972EC9A-3A5C-47CD-9A92-ECB4C0C0451C}", "details": { - "name": "const SceneAPI::DataTypes::IBlendShapeData::Face&" + "name": "Blend Shape Data Face" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Face Index" } } ], @@ -41,7 +40,7 @@ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Vertex Index" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BoxShapeConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BoxShapeConfig.names index b5cad7c12d..aac06f415c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BoxShapeConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/BoxShapeConfig.names @@ -1,12 +1,58 @@ { "entries": [ { - "key": "BoxShapeConfig", + "base": "BoxShapeConfig", "context": "BehaviorClass", "variant": "", "details": { - "name": "BoxShapeConfig" - } + "name": "Box Shape Config" + }, + "methods": [ + { + "base": "GetDimensions", + "details": { + "name": "Get Dimensions" + }, + "params": [ + { + "typeid": "{F034FBA2-AC2F-4E66-8152-14DFB90D6283}", + "details": { + "name": "Box Shape Config", + "tooltip": "Box shape configuration parameters" + } + } + ], + "results": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Dimensions" + } + } + ] + }, + { + "base": "SetDimensions", + "details": { + "name": "Set Dimensions" + }, + "params": [ + { + "typeid": "{F034FBA2-AC2F-4E66-8152-14DFB90D6283}", + "details": { + "name": "Box Shape Config", + "tooltip": "Box shape configuration parameters" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Dimensions" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CameraComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CameraComponent.names index 1b0a02f28e..7a687e359e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CameraComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CameraComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CameraComponent", + "base": "CameraComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CapsuleShapeConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CapsuleShapeConfig.names index 5172f2b9b9..6fe97b25e6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CapsuleShapeConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CapsuleShapeConfig.names @@ -1,12 +1,102 @@ { "entries": [ { - "key": "CapsuleShapeConfig", + "base": "CapsuleShapeConfig", "context": "BehaviorClass", "variant": "", "details": { - "name": "CapsuleShapeConfig" - } + "name": "Capsule Shape Config" + }, + "methods": [ + { + "base": "GetHeight", + "details": { + "name": "Get Height" + }, + "params": [ + { + "typeid": "{00931AEB-2AD8-42CE-B1DC-FA4332F51501}", + "details": { + "name": "Capsule Shape Config", + "tooltip": "Capsule shape configuration parameters" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Height" + } + } + ] + }, + { + "base": "SetHeight", + "details": { + "name": "Set Height" + }, + "params": [ + { + "typeid": "{00931AEB-2AD8-42CE-B1DC-FA4332F51501}", + "details": { + "name": "Capsule Shape Config", + "tooltip": "Capsule shape configuration parameters" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Height" + } + } + ] + }, + { + "base": "GetRadius", + "details": { + "name": "Get Radius" + }, + "params": [ + { + "typeid": "{00931AEB-2AD8-42CE-B1DC-FA4332F51501}", + "details": { + "name": "Capsule Shape Config", + "tooltip": "Capsule shape configuration parameters" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Radius" + } + } + ] + }, + { + "base": "SetRadius", + "details": { + "name": "Set Radius" + }, + "params": [ + { + "typeid": "{00931AEB-2AD8-42CE-B1DC-FA4332F51501}", + "details": { + "name": "Capsule Shape Config", + "tooltip": "Capsule shape configuration parameters" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Radius" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names index 3d1fc2e80e..da4fd03629 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ClientAuthAWSCredentials", + "base": "ClientAuthAWSCredentials", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetAWSAccessKeyId", + "base": "GetAWSAccessKeyId", "details": { "name": "Get AWS Access Key Id" }, @@ -32,7 +32,7 @@ ] }, { - "key": "SetAWSAccessKeyId", + "base": "SetAWSAccessKeyId", "details": { "name": "Set AWS Access Key Id" }, @@ -52,7 +52,7 @@ ] }, { - "key": "GetAWSSecretKey", + "base": "GetAWSSecretKey", "details": { "name": "Get AWS Secret Key" }, @@ -74,7 +74,7 @@ ] }, { - "key": "SetAWSSecretKey", + "base": "SetAWSSecretKey", "details": { "name": "Set AWS Secret Key" }, @@ -94,7 +94,7 @@ ] }, { - "key": "GetAWSSessionToken", + "base": "GetAWSSessionToken", "details": { "name": "Get AWS Session Token" }, @@ -116,7 +116,7 @@ ] }, { - "key": "SetAWSSessionToken", + "base": "SetAWSSessionToken", "details": { "name": "Set AWS Session Token" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CollisionEvent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CollisionEvent.names index 335200a350..5d4d37d1f3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CollisionEvent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CollisionEvent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CollisionEvent", + "base": "CollisionEvent", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetBody1EntityId", + "base": "GetBody1EntityId", "context": "CollisionEvent", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetBody2EntityId", + "base": "GetBody2EntityId", "context": "CollisionEvent", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "GetContacts", + "base": "GetContacts", "details": { "name": "Get Contacts" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CollisionGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CollisionGroup.names index ba4a63ebe2..2892f8b5c5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CollisionGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CollisionGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CollisionGroup", + "base": "CollisionGroup", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ComponentId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ComponentId.names index edc87d77f7..32213e9d4b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ComponentId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ComponentId.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ComponentId", + "base": "ComponentId", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "IsValid", + "base": "IsValid", "context": "ComponentId", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "Equal", + "base": "Equal", "context": "ComponentId", "entry": { "name": "In", @@ -78,7 +78,7 @@ ] }, { - "key": "ToString", + "base": "ToString", "context": "ComponentId", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ConstantGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ConstantGradientComponent.names index 0e0fdad150..e51e6c292b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ConstantGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ConstantGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ConstantGradientComponent", + "base": "ConstantGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ConstantGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ConstantGradientConfig.names index ed5c46c4fa..c7110f1a52 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ConstantGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ConstantGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ConstantGradientConfig", + "base": "ConstantGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Contact.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Contact.names index 068759089b..547cb70970 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Contact.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Contact.names @@ -1,12 +1,182 @@ { "entries": [ { - "key": "Contact", + "base": "Contact", "context": "BehaviorClass", "variant": "", "details": { "name": "Contact" - } + }, + "methods": [ + { + "base": "GetPosition", + "details": { + "name": "Get Position" + }, + "params": [ + { + "typeid": "{D7439508-ED10-4395-9D48-1FC3D7815361}", + "details": { + "name": "Contact" + } + } + ], + "results": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Position" + } + } + ] + }, + { + "base": "SetPosition", + "details": { + "name": "Set Position" + }, + "params": [ + { + "typeid": "{D7439508-ED10-4395-9D48-1FC3D7815361}", + "details": { + "name": "Contact" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Position" + } + } + ] + }, + { + "base": "GetNormal", + "details": { + "name": "Get Normal" + }, + "params": [ + { + "typeid": "{D7439508-ED10-4395-9D48-1FC3D7815361}", + "details": { + "name": "Contact" + } + } + ], + "results": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Normal" + } + } + ] + }, + { + "base": "SetNormal", + "details": { + "name": "Set Normal" + }, + "params": [ + { + "typeid": "{D7439508-ED10-4395-9D48-1FC3D7815361}", + "details": { + "name": "Contact" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Normal" + } + } + ] + }, + { + "base": "GetImpulse", + "details": { + "name": "Get Impulse" + }, + "params": [ + { + "typeid": "{D7439508-ED10-4395-9D48-1FC3D7815361}", + "details": { + "name": "Contact" + } + } + ], + "results": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Impulse" + } + } + ] + }, + { + "base": "SetImpulse", + "details": { + "name": "Set Impulse" + }, + "params": [ + { + "typeid": "{D7439508-ED10-4395-9D48-1FC3D7815361}", + "details": { + "name": "Contact" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Impulse" + } + } + ] + }, + { + "base": "GetSeparation", + "details": { + "name": "Get Separation" + }, + "params": [ + { + "typeid": "{D7439508-ED10-4395-9D48-1FC3D7815361}", + "details": { + "name": "Contact" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Separation" + } + } + ] + }, + { + "base": "SetSeparation", + "details": { + "name": "Set Separation" + }, + "params": [ + { + "typeid": "{D7439508-ED10-4395-9D48-1FC3D7815361}", + "details": { + "name": "Contact" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Separation" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CryRange.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CryRange.names index 39791a3b8b..aae928f16f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CryRange.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CryRange.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CryRange", + "base": "CryRange", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CylinderShapeConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CylinderShapeConfig.names index 633933e188..89ee21fe7d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CylinderShapeConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/CylinderShapeConfig.names @@ -1,12 +1,102 @@ { "entries": [ { - "key": "CylinderShapeConfig", + "base": "CylinderShapeConfig", "context": "BehaviorClass", "variant": "", "details": { - "name": "CylinderShapeConfig" - } + "name": "Cylinder Shape Config" + }, + "methods": [ + { + "base": "GetHeight", + "details": { + "name": "Get Height" + }, + "params": [ + { + "typeid": "{53254779-82F1-441E-9116-81E1FACFECF4}", + "details": { + "name": "Cylinder Shape Config", + "tooltip": "Cylinder shape configuration parameters" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Height" + } + } + ] + }, + { + "base": "SetHeight", + "details": { + "name": "Set Height" + }, + "params": [ + { + "typeid": "{53254779-82F1-441E-9116-81E1FACFECF4}", + "details": { + "name": "Cylinder Shape Config", + "tooltip": "Cylinder shape configuration parameters" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Height" + } + } + ] + }, + { + "base": "GetRadius", + "details": { + "name": "Get Radius" + }, + "params": [ + { + "typeid": "{53254779-82F1-441E-9116-81E1FACFECF4}", + "details": { + "name": "Cylinder Shape Config", + "tooltip": "Cylinder shape configuration parameters" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Radius" + } + } + ] + }, + { + "base": "SetRadius", + "details": { + "name": "Set Radius" + }, + "params": [ + { + "typeid": "{53254779-82F1-441E-9116-81E1FACFECF4}", + "details": { + "name": "Cylinder Shape Config", + "tooltip": "Cylinder shape configuration parameters" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Radius" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DiskShapeConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DiskShapeConfig.names index 82cd174850..6f4af06f00 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DiskShapeConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DiskShapeConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "DiskShapeConfig", + "base": "DiskShapeConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DisplaySettingsState.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DisplaySettingsState.names index 6911c3d15e..2addd0d656 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DisplaySettingsState.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DisplaySettingsState.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "DisplaySettingsState", + "base": "DisplaySettingsState", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "DisplaySettingsState", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DitherGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DitherGradientComponent.names index 36d4024bce..e3b269f248 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DitherGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DitherGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "DitherGradientComponent", + "base": "DitherGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DitherGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DitherGradientConfig.names index bdbf4d34e4..94ee3bc7c7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DitherGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/DitherGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "DitherGradientConfig", + "base": "DitherGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorActorComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorActorComponent.names index 9ff8e9933c..d07b60cb07 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorActorComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorActorComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorActorComponent", + "base": "EditorActorComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorCameraComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorCameraComponent.names index ad933a1918..23724acac1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorCameraComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorCameraComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorCameraComponent", + "base": "EditorCameraComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorLayerComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorLayerComponent.names index f8cdb2e825..415af30964 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorLayerComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorLayerComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorLayerComponent", + "base": "EditorLayerComponent", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreateLayerEntityFromName", + "base": "CreateLayerEntityFromName", "context": "EditorLayerComponent", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "RecoverLayer", + "base": "RecoverLayer", "context": "EditorLayerComponent", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorMaterialComponentSlot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorMaterialComponentSlot.names index fbb74f130d..5b20e07711 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorMaterialComponentSlot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorMaterialComponentSlot.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorMaterialComponentSlot", + "base": "EditorMaterialComponentSlot", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorSequenceComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorSequenceComponent.names index 32e5072aa2..7e29d2e3cb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorSequenceComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorSequenceComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorSequenceComponent", + "base": "EditorSequenceComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorSimpleMotionComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorSimpleMotionComponent.names index 8ae6402242..fa1366b36a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorSimpleMotionComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorSimpleMotionComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorSimpleMotionComponent", + "base": "EditorSimpleMotionComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorTransformBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorTransformBus.names index 11b6390631..cb681cedbd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorTransformBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EditorTransformBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorTransformBus", + "base": "EditorTransformBus", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Entity Transform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Entity Transform.names index 86c3415b37..389c88d709 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Entity Transform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Entity Transform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Entity Transform", + "base": "Entity Transform", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Rotate", + "base": "Rotate", "context": "Entity Transform", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Entity.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Entity.names index a6d6ac1f03..22a3a46c7c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Entity.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Entity.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Entity", + "base": "Entity", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetComponentName", + "base": "GetComponentName", "context": "Entity", "entry": { "name": "In", @@ -49,7 +49,7 @@ ] }, { - "key": "GetComponentType", + "base": "GetComponentType", "context": "Entity", "entry": { "name": "In", @@ -88,7 +88,7 @@ ] }, { - "key": "CreateComponent", + "base": "CreateComponent", "context": "Entity", "entry": { "name": "In", @@ -133,7 +133,7 @@ ] }, { - "key": "DestroyComponent", + "base": "DestroyComponent", "context": "Entity", "entry": { "name": "In", @@ -172,7 +172,7 @@ ] }, { - "key": "FindComponentOfType", + "base": "FindComponentOfType", "context": "Entity", "entry": { "name": "In", @@ -211,7 +211,7 @@ ] }, { - "key": "SetComponentConfiguration", + "base": "SetComponentConfiguration", "context": "Entity", "entry": { "name": "In", @@ -256,7 +256,7 @@ ] }, { - "key": "IsValid", + "base": "IsValid", "context": "Entity", "entry": { "name": "In", @@ -289,7 +289,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "Entity", "entry": { "name": "In", @@ -323,7 +323,7 @@ ] }, { - "key": "GetOwningContextId", + "base": "GetOwningContextId", "context": "Entity", "entry": { "name": "In", @@ -355,7 +355,7 @@ ] }, { - "key": "GetComponents", + "base": "GetComponents", "context": "Entity", "entry": { "name": "In", @@ -388,7 +388,7 @@ ] }, { - "key": "FindAllComponentsOfType", + "base": "FindAllComponentsOfType", "context": "Entity", "entry": { "name": "In", @@ -427,7 +427,7 @@ ] }, { - "key": "GetComponentConfiguration", + "base": "GetComponentConfiguration", "context": "Entity", "entry": { "name": "In", @@ -472,7 +472,7 @@ ] }, { - "key": "SetName", + "base": "SetName", "context": "Entity", "entry": { "name": "In", @@ -503,7 +503,7 @@ ] }, { - "key": "IsActivated", + "base": "IsActivated", "context": "Entity", "entry": { "name": "In", @@ -536,7 +536,7 @@ ] }, { - "key": "Activate", + "base": "Activate", "context": "Entity", "entry": { "name": "In", @@ -561,7 +561,7 @@ ] }, { - "key": "Deactivate", + "base": "Deactivate", "context": "Entity", "entry": { "name": "In", @@ -586,7 +586,7 @@ ] }, { - "key": "GetName", + "base": "GetName", "context": "Entity", "entry": { "name": "In", @@ -619,7 +619,7 @@ ] }, { - "key": "Exists", + "base": "Exists", "context": "Entity", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityComponentIdPair.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityComponentIdPair.names index 65f9f52bd9..50268aecb5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityComponentIdPair.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityComponentIdPair.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EntityComponentIdPair", + "base": "EntityComponentIdPair", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetEntityId", + "base": "GetEntityId", "context": "EntityComponentIdPair", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "Equal", + "base": "Equal", "context": "EntityComponentIdPair", "entry": { "name": "In", @@ -80,7 +80,7 @@ ] }, { - "key": "ToString", + "base": "ToString", "context": "EntityComponentIdPair", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityEntity_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityEntity_VM.names index fe98c15e8c..ea810ec9f0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityEntity_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityEntity_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EntityEntity_VM", + "base": "EntityEntity_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "EntityEntity_VM", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "IsValid", + "base": "IsValid", "context": "EntityEntity_VM", "entry": { "name": "In", @@ -75,7 +75,7 @@ ] }, { - "key": "GetEntityForward", + "base": "GetEntityForward", "context": "EntityEntity_VM", "entry": { "name": "In", @@ -114,7 +114,7 @@ ] }, { - "key": "IsActive", + "base": "IsActive", "context": "EntityEntity_VM", "entry": { "name": "In", @@ -147,7 +147,7 @@ ] }, { - "key": "GetEntityRight", + "base": "GetEntityRight", "context": "EntityEntity_VM", "entry": { "name": "In", @@ -186,7 +186,7 @@ ] }, { - "key": "GetEntityUp", + "base": "GetEntityUp", "context": "EntityEntity_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityType.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityType.names index c536170171..3389be627a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityType.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/EntityType.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EntityType", + "base": "EntityType", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPerActivation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPerActivation.names index 121cf63347..a6a5e8142a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPerActivation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPerActivation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExecutionStateInterpretedPerActivation", + "base": "ExecutionStateInterpretedPerActivation", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPerActivationOnGraphStart.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPerActivationOnGraphStart.names index f0138954e0..416c6b2f5b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPerActivationOnGraphStart.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPerActivationOnGraphStart.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExecutionStateInterpretedPerActivationOnGraphStart", + "base": "ExecutionStateInterpretedPerActivationOnGraphStart", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPure.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPure.names index fdd633d126..0dd0d06720 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPure.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPure.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExecutionStateInterpretedPure", + "base": "ExecutionStateInterpretedPure", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPureOnGraphStart.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPureOnGraphStart.names index c979b46dbd..94204607cc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPureOnGraphStart.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedPureOnGraphStart.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExecutionStateInterpretedPureOnGraphStart", + "base": "ExecutionStateInterpretedPureOnGraphStart", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedSingleton.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedSingleton.names index 3fa218a880..3303bba243 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedSingleton.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExecutionStateInterpretedSingleton.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExecutionStateInterpretedSingleton", + "base": "ExecutionStateInterpretedSingleton", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExportProduct.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExportProduct.names index a8035016f6..b42f87cf63 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExportProduct.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExportProduct.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExportProduct", + "base": "ExportProduct", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExportProductList.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExportProductList.names index e2dac48874..c3bbaf92a3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExportProductList.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExportProductList.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExportProductList", + "base": "ExportProductList", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "AddProduct", + "base": "AddProduct", "context": "ExportProductList", "entry": { "name": "In", @@ -39,7 +39,7 @@ ] }, { - "key": "GetProducts", + "base": "GetProducts", "context": "ExportProductList", "entry": { "name": "In", @@ -71,7 +71,7 @@ ] }, { - "key": "AddDependencyToProduct", + "base": "AddDependencyToProduct", "context": "ExportProductList", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExposureControlConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExposureControlConfig.names index b58c7ff990..fc0bf98597 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExposureControlConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ExposureControlConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExposureControlConfig", + "base": "ExposureControlConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetautoExposureSpeedUp", + "base": "GetautoExposureSpeedUp", "details": { "name": "Get Auto Exposure Speed Up" }, @@ -31,7 +31,7 @@ ] }, { - "key": "SetautoExposureSpeedUp", + "base": "SetautoExposureSpeedUp", "details": { "name": "Set Auto Exposure Speed Up" }, @@ -51,7 +51,7 @@ ] }, { - "key": "GetautoExposureSpeedDown", + "base": "GetautoExposureSpeedDown", "details": { "name": "Get Auto Exposure Speed Down" }, @@ -73,7 +73,7 @@ ] }, { - "key": "SetautoExposureSpeedDown", + "base": "SetautoExposureSpeedDown", "details": { "name": "Setauto Exposure Speed Down" }, @@ -93,7 +93,7 @@ ] }, { - "key": "GetautoExposureMax", + "base": "GetautoExposureMax", "details": { "name": "Get Auto Exposure Max" }, @@ -115,7 +115,7 @@ ] }, { - "key": "SetautoExposureMax", + "base": "SetautoExposureMax", "details": { "name": "Set Auto Exposure Max" }, @@ -135,7 +135,7 @@ ] }, { - "key": "GetautoExposureMin", + "base": "GetautoExposureMin", "details": { "name": "Get Auto Exposure Min" }, @@ -157,7 +157,7 @@ ] }, { - "key": "SetautoExposureMin", + "base": "SetautoExposureMin", "details": { "name": "Set Auto Exposure Min" }, @@ -177,7 +177,7 @@ ] }, { - "key": "GetexposureControlType", + "base": "GetexposureControlType", "details": { "name": "Get Exposure Control Type" }, @@ -199,7 +199,7 @@ ] }, { - "key": "SetexposureControlType", + "base": "SetexposureControlType", "details": { "name": "Set Exposure Control Type" }, @@ -219,7 +219,7 @@ ] }, { - "key": "GetcompensateValue", + "base": "GetcompensateValue", "details": { "name": "Get Compensate Value" }, @@ -241,7 +241,7 @@ ] }, { - "key": "SetcompensateValue", + "base": "SetcompensateValue", "details": { "name": "Set Compensate Value" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GameplayNotificationId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GameplayNotificationId.names index 686f40b859..27dab194a4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GameplayNotificationId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GameplayNotificationId.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GameplayNotificationId", + "base": "GameplayNotificationId", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "GameplayNotificationId", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "Equal", + "base": "Equal", "context": "GameplayNotificationId", "entry": { "name": "In", @@ -80,7 +80,7 @@ ] }, { - "key": "Clone", + "base": "Clone", "context": "GameplayNotificationId", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSampleParams.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSampleParams.names index 233f8b4ba9..8db90358b4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSampleParams.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSampleParams.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientSampleParams", + "base": "GradientSampleParams", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSampler.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSampler.names index ebf2a37da5..57f65951aa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSampler.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSampler.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientSampler", + "base": "GradientSampler", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSurfaceDataComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSurfaceDataComponent.names index 16b8c9437d..dbc0134c40 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSurfaceDataComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSurfaceDataComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientSurfaceDataComponent", + "base": "GradientSurfaceDataComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSurfaceDataConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSurfaceDataConfig.names index c176bcd603..0a488feb78 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSurfaceDataConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientSurfaceDataConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientSurfaceDataConfig", + "base": "GradientSurfaceDataConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNumTags", + "base": "GetNumTags", "context": "GradientSurfaceDataConfig", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetTag", + "base": "GetTag", "context": "GradientSurfaceDataConfig", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "context": "GradientSurfaceDataConfig", "entry": { "name": "In", @@ -109,7 +109,7 @@ ] }, { - "key": "AddTag", + "base": "AddTag", "context": "GradientSurfaceDataConfig", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientTransformComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientTransformComponent.names index 007c0f28a3..f0f587922a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientTransformComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientTransformComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientTransformComponent", + "base": "GradientTransformComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientTransformConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientTransformConfig.names index 8686f131d6..1156dfc75e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientTransformConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GradientTransformConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientTransformConfig", + "base": "GradientTransformConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GraphModelSlotId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GraphModelSlotId.names index 67c5edb8e7..232ec5f34a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GraphModelSlotId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/GraphModelSlotId.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GraphModelSlotId", + "base": "GraphModelSlotId", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IAnimationData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IAnimationData.names index 2dc1fd3ce8..c258755cf5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IAnimationData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IAnimationData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "IAnimationData", + "base": "IAnimationData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetKeyFrameCount", + "base": "GetKeyFrameCount", "context": "IAnimationData", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetKeyFrame", + "base": "GetKeyFrame", "context": "IAnimationData", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "GetTimeStepBetweenFrames", + "base": "GetTimeStepBetweenFrames", "context": "IAnimationData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IBlendShapeAnimationData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IBlendShapeAnimationData.names index a326b0b586..1d73f54d56 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IBlendShapeAnimationData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IBlendShapeAnimationData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "IBlendShapeAnimationData", + "base": "IBlendShapeAnimationData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetBlendShapeName", + "base": "GetBlendShapeName", "context": "IBlendShapeAnimationData", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetKeyFrameCount", + "base": "GetKeyFrameCount", "context": "IBlendShapeAnimationData", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "GetKeyFrame", + "base": "GetKeyFrame", "context": "IBlendShapeAnimationData", "entry": { "name": "In", @@ -111,7 +111,7 @@ ] }, { - "key": "GetTimeStepBetweenFrames", + "base": "GetTimeStepBetweenFrames", "context": "IBlendShapeAnimationData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IBlendShapeData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IBlendShapeData.names index 5c4f91be1a..24143c053c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IBlendShapeData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IBlendShapeData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "IBlendShapeData", + "base": "IBlendShapeData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNormal", + "base": "GetNormal", "context": "IBlendShapeData", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "GetFaceVertexIndex", + "base": "GetFaceVertexIndex", "context": "IBlendShapeData", "entry": { "name": "In", @@ -91,7 +91,7 @@ ] }, { - "key": "GetFaceInfo", + "base": "GetFaceInfo", "context": "IBlendShapeData", "entry": { "name": "In", @@ -129,7 +129,7 @@ ] }, { - "key": "GetPosition", + "base": "GetPosition", "context": "IBlendShapeData", "entry": { "name": "In", @@ -167,7 +167,7 @@ ] }, { - "key": "GetUsedPointIndexForControlPoint", + "base": "GetUsedPointIndexForControlPoint", "context": "IBlendShapeData", "entry": { "name": "In", @@ -205,7 +205,7 @@ ] }, { - "key": "GetVertexCount", + "base": "GetVertexCount", "context": "IBlendShapeData", "entry": { "name": "In", @@ -237,7 +237,7 @@ ] }, { - "key": "GetFaceCount", + "base": "GetFaceCount", "context": "IBlendShapeData", "entry": { "name": "In", @@ -269,7 +269,7 @@ ] }, { - "key": "GetControlPointIndex", + "base": "GetControlPointIndex", "context": "IBlendShapeData", "entry": { "name": "In", @@ -307,7 +307,7 @@ ] }, { - "key": "GetUsedControlPointCount", + "base": "GetUsedControlPointCount", "context": "IBlendShapeData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IGraphObject.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IGraphObject.names index a330f6bdae..b804be2319 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IGraphObject.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IGraphObject.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "IGraphObject", + "base": "IGraphObject", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IMeshData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IMeshData.names index 608c225f3d..2ac54d8ab0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IMeshData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/IMeshData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "IMeshData", + "base": "IMeshData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetUnitSizeInMeters", + "base": "GetUnitSizeInMeters", "context": "IMeshData", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetOriginalUnitSizeInMeters", + "base": "GetOriginalUnitSizeInMeters", "context": "IMeshData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ImageGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ImageGradientComponent.names index 186eee8f38..194c7eb028 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ImageGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ImageGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ImageGradientComponent", + "base": "ImageGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ImageGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ImageGradientConfig.names index d774b0d054..75e0b09edf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ImageGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ImageGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ImageGradientConfig", + "base": "ImageGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceGamepad.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceGamepad.names index 69ce4ef1ce..462cc30656 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceGamepad.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceGamepad.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InputDeviceGamepad", + "base": "InputDeviceGamepad", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceKeyboard.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceKeyboard.names index f041229250..f9b49b0fc9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceKeyboard.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceKeyboard.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InputDeviceKeyboard", + "base": "InputDeviceKeyboard", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceMotion.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceMotion.names index 92421945e7..994989916f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceMotion.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceMotion.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InputDeviceMotion", + "base": "InputDeviceMotion", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceMouse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceMouse.names index 762d2fe576..dd47cb6405 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceMouse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceMouse.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InputDeviceMouse", + "base": "InputDeviceMouse", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceTouch.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceTouch.names index 082e6e65cf..b34a2bfe64 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceTouch.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceTouch.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InputDeviceTouch", + "base": "InputDeviceTouch", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceVirtualKeyboard.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceVirtualKeyboard.names index 770640e7f7..6ed1e9058b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceVirtualKeyboard.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputDeviceVirtualKeyboard.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InputDeviceVirtualKeyboard", + "base": "InputDeviceVirtualKeyboard", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputEventNotificationId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputEventNotificationId.names index e964bd2518..c510b34efd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputEventNotificationId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InputEventNotificationId.names @@ -1,34 +1,33 @@ { "entries": [ { - "key": "InputEventNotificationId", + "base": "InputEventNotificationId", "context": "BehaviorClass", "variant": "", "details": { - "name": "Input Event Notification ID", - "category": "Gameplay/Input" + "name": "Input", + "category": "Gameplay" }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "InputEventNotificationId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ToString" + "tooltip": "When signaled, this will invoke To String" }, "exit": { "name": "Out", - "tooltip": "Signaled after ToString is invoked" + "tooltip": "Signaled after To String is invoked" }, "details": { - "name": "InputEventNotificationId::ToString", - "category": "Gameplay/Input" + "name": "To String" }, "params": [ { "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", "details": { - "name": "InputEventNotificationId*" + "name": "Input Event Notification Id" } } ], @@ -42,7 +41,7 @@ ] }, { - "key": "Equal", + "base": "Equal", "context": "InputEventNotificationId", "entry": { "name": "In", @@ -53,20 +52,19 @@ "tooltip": "Signaled after Equal is invoked" }, "details": { - "name": "InputEventNotificationId::Equal", - "category": "Gameplay/Input" + "name": "Equal" }, "params": [ { "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", "details": { - "name": "InputEventNotificationId*" + "name": "Input Event Notification Id" } }, { "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", "details": { - "name": "const InputEventNotificationId&" + "name": "Input Event Notification Id" } } ], @@ -74,13 +72,13 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "Boolean" + "name": "Equal" } } ] }, { - "key": "Clone", + "base": "Clone", "context": "InputEventNotificationId", "entry": { "name": "In", @@ -91,14 +89,13 @@ "tooltip": "Signaled after Clone is invoked" }, "details": { - "name": "InputEventNotificationId::Clone", - "category": "Gameplay/Input" + "name": "Clone" }, "params": [ { "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", "details": { - "name": "InputEventNotificationId*" + "name": "Input Event Notification Id" } } ], @@ -106,39 +103,36 @@ { "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", "details": { - "name": "InputEventNotificationID" + "name": "Input Event Notification Id" } } ] }, { - "key": "CreateInputEventNotificationId", + "base": "CreateInputEventNotificationId", "context": "InputEventNotificationId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateInputEventNotificationId" + "tooltip": "When signaled, this will invoke Create Input Event Notification Id" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateInputEventNotificationId is invoked" + "tooltip": "Signaled after Create Input Event Notification Id is invoked" }, "details": { - "name": "InputEventNotificationId::CreateInputEventNotificationId", - "category": "Gameplay/Input" + "name": "Create Input Event Notification Id" }, "params": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "localUserId", - "tooltip": "Local user ID (0-3, or -1 for all users)" + "name": "Local User Id" } }, { "typeid": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "details": { - "name": "actionName", - "tooltip": "The name of the Input event action" + "name": "Value" } } ], @@ -146,7 +140,111 @@ { "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", "details": { - "name": "InputEventNotificationID" + "name": "Input Event Notification Id" + } + } + ] + }, + { + "base": "GetactionNameCrc", + "details": { + "name": "Get Action Name Tag" + }, + "params": [ + { + "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", + "details": { + "name": "Input Event Notification Id" + } + } + ], + "results": [ + { + "typeid": "{9F4E062E-06A0-46D4-85DF-E0DA96467D3A}", + "details": { + "name": "Tag" + } + } + ] + }, + { + "base": "SetactionNameCrc", + "details": { + "name": "Set Action Name Tag" + }, + "params": [ + { + "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", + "details": { + "name": "Input Event Notification Id" + } + }, + { + "typeid": "{9F4E062E-06A0-46D4-85DF-E0DA96467D3A}", + "details": { + "name": "Tag" + } + } + ] + }, + { + "base": "GetlocalUserId", + "details": { + "name": "Get Local User Id" + }, + "params": [ + { + "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", + "details": { + "name": "Input Event Notification Id" + } + } + ], + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "Local User Id" + } + } + ] + }, + { + "base": "SetlocalUserId", + "details": { + "name": "Set Local User Id" + }, + "params": [ + { + "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", + "details": { + "name": "Input Event Notification Id" + } + }, + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "Local User Id" + } + } + ] + }, + { + "base": "SetactionName", + "details": { + "name": "Set Action Name" + }, + "params": [ + { + "typeid": "{9E0F0801-348B-4FF9-AF9B-858D59404968}", + "details": { + "name": "Input Event Notification Id" + } + }, + { + "typeid": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", + "details": { + "name": "Action Name" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InvertGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InvertGradientComponent.names index 8e72ef70d6..80153489d0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InvertGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InvertGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InvertGradientComponent", + "base": "InvertGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InvertGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InvertGradientConfig.names index 21840537c4..0c7f50683f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InvertGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/InvertGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InvertGradientConfig", + "base": "InvertGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LevelsGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LevelsGradientComponent.names index 08c34aea98..c44335f796 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LevelsGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LevelsGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "LevelsGradientComponent", + "base": "LevelsGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LevelsGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LevelsGradientConfig.names index badb39ba8e..6b1b6f5d1f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LevelsGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LevelsGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "LevelsGradientConfig", + "base": "LevelsGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LightConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LightConfig.names index a0e6ba654c..9695d74586 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LightConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LightConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "LightConfig", + "base": "LightConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetshadowmapSize", + "base": "GetshadowmapSize", "details": { "name": "Get Shadowmap Size" }, @@ -31,7 +31,7 @@ ] }, { - "key": "SetshadowmapSize", + "base": "SetshadowmapSize", "details": { "name": "Set Shadowmap Size" }, @@ -51,7 +51,7 @@ ] }, { - "key": "GetshadowCascadeCount", + "base": "GetshadowCascadeCount", "details": { "name": "Get Shadow Cascade Count" }, @@ -73,7 +73,7 @@ ] }, { - "key": "SetshadowCascadeCount", + "base": "SetshadowCascadeCount", "details": { "name": "Set Shadow Cascade Count" }, @@ -93,7 +93,7 @@ ] }, { - "key": "GetenableShadowDebugColoring", + "base": "GetenableShadowDebugColoring", "details": { "name": "Get Enable Shadow Debug Coloring" }, @@ -115,7 +115,7 @@ ] }, { - "key": "SetenableShadowDebugColoring", + "base": "SetenableShadowDebugColoring", "details": { "name": "Set Enable Shadow Debug Coloring" }, @@ -135,7 +135,7 @@ ] }, { - "key": "Getintensity", + "base": "Getintensity", "details": { "name": "Get Intensity" }, @@ -157,7 +157,7 @@ ] }, { - "key": "Setintensity", + "base": "Setintensity", "details": { "name": "Set Intensity" }, @@ -177,7 +177,7 @@ ] }, { - "key": "GetshadowRatioLogarithmUniform", + "base": "GetshadowRatioLogarithmUniform", "details": { "name": "Get Shadow Ratio Logarithm Uniform" }, @@ -199,7 +199,7 @@ ] }, { - "key": "SetshadowRatioLogarithmUniform", + "base": "SetshadowRatioLogarithmUniform", "details": { "name": "Set Shadow Ratio Logarithm Uniform" }, @@ -219,7 +219,7 @@ ] }, { - "key": "Getcolor", + "base": "Getcolor", "details": { "name": "Get Color" }, @@ -241,7 +241,7 @@ ] }, { - "key": "Setcolor", + "base": "Setcolor", "details": { "name": "Set Color" }, @@ -261,7 +261,7 @@ ] }, { - "key": "Getdirection", + "base": "Getdirection", "details": { "name": "Get Direction" }, @@ -283,7 +283,7 @@ ] }, { - "key": "Setdirection", + "base": "Setdirection", "details": { "name": "Set Direction" }, @@ -303,7 +303,7 @@ ] }, { - "key": "GetshadowFarClipDistance", + "base": "GetshadowFarClipDistance", "details": { "name": "Get Shadow Far Clip Distance" }, @@ -325,7 +325,7 @@ ] }, { - "key": "SetshadowFarClipDistance", + "base": "SetshadowFarClipDistance", "details": { "name": "Set Shadow Far Clip Distance" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LightingPreset.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LightingPreset.names index 880ca19784..2de6836faf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LightingPreset.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/LightingPreset.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "LightingPreset", + "base": "LightingPreset", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetshadowCatcherOpacity", + "base": "GetshadowCatcherOpacity", "details": { "name": "Get Shadow Catcher Opacity" }, @@ -31,7 +31,7 @@ ] }, { - "key": "SetshadowCatcherOpacity", + "base": "SetshadowCatcherOpacity", "details": { "name": "Set Shadow Catcher Opacity" }, @@ -51,7 +51,7 @@ ] }, { - "key": "GetskyboxExposure", + "base": "GetskyboxExposure", "details": { "name": "Get Skybox Exposure" }, @@ -73,7 +73,7 @@ ] }, { - "key": "SetskyboxExposure", + "base": "SetskyboxExposure", "details": { "name": "Set Skybox Exposure" }, @@ -93,7 +93,7 @@ ] }, { - "key": "Getlights", + "base": "Getlights", "details": { "name": "Get Lights" }, @@ -115,7 +115,7 @@ ] }, { - "key": "Setlights", + "base": "Setlights", "details": { "name": "Set Lights" }, @@ -135,7 +135,7 @@ ] }, { - "key": "GetiblExposure", + "base": "GetiblExposure", "details": { "name": "Get IBL Exposure" }, @@ -157,7 +157,7 @@ ] }, { - "key": "SetiblExposure", + "base": "SetiblExposure", "details": { "name": "Set IBL Exposure" }, @@ -177,7 +177,7 @@ ] }, { - "key": "GetskyboxImageAsset", + "base": "GetskyboxImageAsset", "details": { "name": "Get Skybox Image Asset" }, @@ -199,7 +199,7 @@ ] }, { - "key": "SetskyboxImageAsset", + "base": "SetskyboxImageAsset", "details": { "name": "Set Skybox Image Asset" }, @@ -219,7 +219,7 @@ ] }, { - "key": "GetiblSpecularImageAsset", + "base": "GetiblSpecularImageAsset", "details": { "name": "Get IBL Specular Image Asset" }, @@ -241,7 +241,7 @@ ] }, { - "key": "SetiblSpecularImageAsset", + "base": "SetiblSpecularImageAsset", "details": { "name": "Set IBL Specular Image Asset" }, @@ -261,7 +261,7 @@ ] }, { - "key": "GetdisplayName", + "base": "GetdisplayName", "details": { "name": "Get Display Name" }, @@ -283,7 +283,7 @@ ] }, { - "key": "SetdisplayName", + "base": "SetdisplayName", "details": { "name": "Set Display Name" }, @@ -303,7 +303,7 @@ ] }, { - "key": "GetalternateSkyboxImageAsset", + "base": "GetalternateSkyboxImageAsset", "details": { "name": "Get Alternate Skybox Image Asset" }, @@ -325,7 +325,7 @@ ] }, { - "key": "SetalternateSkyboxImageAsset", + "base": "SetalternateSkyboxImageAsset", "details": { "name": "Set Alternate Skybox Image Asset" }, @@ -345,7 +345,7 @@ ] }, { - "key": "GetiblDiffuseImageAsset", + "base": "GetiblDiffuseImageAsset", "details": { "name": "Get IBL Diffuse Image Asset" }, @@ -367,7 +367,7 @@ ] }, { - "key": "SetiblDiffuseImageAsset", + "base": "SetiblDiffuseImageAsset", "details": { "name": "Set IBL Diffuse Image Asset" }, @@ -387,7 +387,7 @@ ] }, { - "key": "Getexposure", + "base": "Getexposure", "details": { "name": "Get Exposure" }, @@ -409,7 +409,7 @@ ] }, { - "key": "Setexposure", + "base": "Setexposure", "details": { "name": "Set Exposure" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialAssignment.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialAssignment.names index a77e2615b8..eee8e79088 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialAssignment.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialAssignment.names @@ -1,41 +1,117 @@ { "entries": [ { - "key": "MaterialAssignment", + "base": "MaterialAssignment", "context": "BehaviorClass", "variant": "", "details": { - "name": "MaterialAssignment" + "name": "Material Assignment", + "category": "Rendering" }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "MaterialAssignment", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ToString" + "tooltip": "When signaled, this will invoke To String" }, "exit": { "name": "Out", - "tooltip": "Signaled after ToString is invoked" + "tooltip": "Signaled after To String is invoked" }, "details": { - "name": "MaterialAssignment::ToString", - "category": "Other" + "name": "To String" + }, + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AZ Std::basic_string, allocator>" + } + } + ] + }, + { + "base": "GetmaterialAsset", + "details": { + "name": "Getmaterial Asset" }, "params": [ { "typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}", "details": { - "name": "AZ::Render::MaterialAssignment*" + "name": "" } } ], "results": [ { - "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "typeid": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "details": { - "name": "AZStd::basic_string, allocator>" + "name": "" + } + } + ] + }, + { + "base": "SetmaterialAsset", + "details": { + "name": "Setmaterial Asset" + }, + "params": [ + { + "typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}", + "details": { + "name": "" + } + }, + { + "typeid": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "GetpropertyOverrides", + "details": { + "name": "Getproperty Overrides" + }, + "params": [ + { + "typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "SetpropertyOverrides", + "details": { + "name": "Setproperty Overrides" + }, + "params": [ + { + "typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}", + "details": { + "name": "" + } + }, + { + "typeid": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", + "details": { + "name": "" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialAssignmentId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialAssignmentId.names index 6a5c0d5b60..4f8e8299ff 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialAssignmentId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialAssignmentId.names @@ -1,68 +1,51 @@ { "entries": [ { - "key": "MaterialAssignmentId", + "base": "MaterialAssignmentId", "context": "BehaviorClass", "variant": "", "details": { - "name": "MaterialAssignmentId" + "name": "Material Assignment Id", + "category": "Rendering" }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "MaterialAssignmentId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ToString" + "tooltip": "When signaled, this will invoke To String" }, "exit": { "name": "Out", - "tooltip": "Signaled after ToString is invoked" + "tooltip": "Signaled after To String is invoked" }, "details": { - "name": "MaterialAssignmentId::ToString", - "category": "Other" + "name": "To String" }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId*" - } - } - ], "results": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::basic_string, allocator>" + "name": "AZ Std::basic_string, allocator>" } } ] }, { - "key": "IsAssetOnly", + "base": "IsAssetOnly", "context": "MaterialAssignmentId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsAssetOnly" + "tooltip": "When signaled, this will invoke Is Asset Only" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsAssetOnly is invoked" + "tooltip": "Signaled after Is Asset Only is invoked" }, "details": { - "name": "MaterialAssignmentId::IsAssetOnly", - "category": "Other" + "name": "Is Asset Only" }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId*" - } - } - ], "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", @@ -73,28 +56,19 @@ ] }, { - "key": "IsSlotIdOnly", + "base": "IsSlotIdOnly", "context": "MaterialAssignmentId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsSlotIdOnly" + "tooltip": "When signaled, this will invoke Is Slot Id Only" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsSlotIdOnly is invoked" + "tooltip": "Signaled after Is Slot Id Only is invoked" }, "details": { - "name": "MaterialAssignmentId::IsSlotIdOnly", - "category": "Other" + "name": "Is Slot Id Only" }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId*" - } - } - ], "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", @@ -105,28 +79,19 @@ ] }, { - "key": "IsLodAndSlotId", + "base": "IsLodAndSlotId", "context": "MaterialAssignmentId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsLodAndSlotId" + "tooltip": "When signaled, this will invoke Is Lod And Slot Id" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsLodAndSlotId is invoked" + "tooltip": "Signaled after Is Lod And Slot Id is invoked" }, "details": { - "name": "MaterialAssignmentId::IsLodAndSlotId", - "category": "Other" + "name": "Is Lod And Slot Id" }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId*" - } - } - ], "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", @@ -137,28 +102,19 @@ ] }, { - "key": "IsDefault", + "base": "IsDefault", "context": "MaterialAssignmentId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsDefault" + "tooltip": "When signaled, this will invoke Is Default" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsDefault is invoked" + "tooltip": "Signaled after Is Default is invoked" }, "details": { - "name": "MaterialAssignmentId::IsDefault", - "category": "Other" + "name": "Is Default" }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId*" - } - } - ], "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", @@ -169,28 +125,19 @@ ] }, { - "key": "IsLodAndAsset", + "base": "IsLodAndAsset", "context": "MaterialAssignmentId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsLodAndAsset" + "tooltip": "When signaled, this will invoke Is Lod And Asset" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsLodAndAsset is invoked" + "tooltip": "Signaled after Is Lod And Asset is invoked" }, "details": { - "name": "MaterialAssignmentId::IsLodAndAsset", - "category": "Other" + "name": "Is Lod And Asset" }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId*" - } - } - ], "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", @@ -199,6 +146,90 @@ } } ] + }, + { + "base": "GetlodIndex", + "details": { + "name": "Getlod Index" + }, + "params": [ + { + "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "SetlodIndex", + "details": { + "name": "Setlod Index" + }, + "params": [ + { + "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", + "details": { + "name": "" + } + }, + { + "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "GetmaterialSlotStableId", + "details": { + "name": "Getmaterial Slot Stable Id" + }, + "params": [ + { + "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "SetmaterialSlotStableId", + "details": { + "name": "Setmaterial Slot Stable Id" + }, + "params": [ + { + "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", + "details": { + "name": "" + } + }, + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "" + } + } + ] } ] } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialComponentConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialComponentConfig.names index 66798ef901..e167ff79a5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialComponentConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialComponentConfig.names @@ -1,12 +1,59 @@ { "entries": [ { - "key": "MaterialComponentConfig", + "base": "MaterialComponentConfig", "context": "BehaviorClass", "variant": "", "details": { - "name": "MaterialComponentConfig" - } + "name": "Material Component Config", + "category": "Rendering" + }, + "methods": [ + { + "base": "Getmaterials", + "details": { + "name": "Get Materials" + }, + "params": [ + { + "typeid": "{3366C279-32AE-48F6-839B-7700AE117A54}", + "details": { + "name": "", + "tooltip": "Material Component Config" + } + } + ], + "results": [ + { + "typeid": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", + "details": { + "name": "Material Assignment Map" + } + } + ] + }, + { + "base": "Setmaterials", + "details": { + "name": "Set Materials" + }, + "params": [ + { + "typeid": "{3366C279-32AE-48F6-839B-7700AE117A54}", + "details": { + "name": "", + "tooltip": "Material Component Config" + } + }, + { + "typeid": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", + "details": { + "name": "Material Assignment Map" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialData.names index fc1aaa0e0b..a3736cd467 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MaterialData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MaterialData", + "base": "MaterialData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetBaseColor", + "base": "GetBaseColor", "context": "MaterialData", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "GetUseRoughnessMap", + "base": "GetUseRoughnessMap", "context": "MaterialData", "entry": { "name": "In", @@ -75,7 +75,7 @@ ] }, { - "key": "GetShininess", + "base": "GetShininess", "context": "MaterialData", "entry": { "name": "In", @@ -108,7 +108,7 @@ ] }, { - "key": "GetUseEmissiveMap", + "base": "GetUseEmissiveMap", "context": "MaterialData", "entry": { "name": "In", @@ -141,7 +141,7 @@ ] }, { - "key": "GetEmissiveColor", + "base": "GetEmissiveColor", "context": "MaterialData", "entry": { "name": "In", @@ -174,7 +174,7 @@ ] }, { - "key": "GetSpecularColor", + "base": "GetSpecularColor", "context": "MaterialData", "entry": { "name": "In", @@ -207,7 +207,7 @@ ] }, { - "key": "GetUniqueId", + "base": "GetUniqueId", "context": "MaterialData", "entry": { "name": "In", @@ -240,7 +240,7 @@ ] }, { - "key": "GetDiffuseColor", + "base": "GetDiffuseColor", "context": "MaterialData", "entry": { "name": "In", @@ -273,7 +273,7 @@ ] }, { - "key": "GetEmissiveIntensity", + "base": "GetEmissiveIntensity", "context": "MaterialData", "entry": { "name": "In", @@ -306,7 +306,7 @@ ] }, { - "key": "GetMaterialName", + "base": "GetMaterialName", "context": "MaterialData", "entry": { "name": "In", @@ -339,7 +339,7 @@ ] }, { - "key": "GetUseMetallicMap", + "base": "GetUseMetallicMap", "context": "MaterialData", "entry": { "name": "In", @@ -372,7 +372,7 @@ ] }, { - "key": "GetMetallicFactor", + "base": "GetMetallicFactor", "context": "MaterialData", "entry": { "name": "In", @@ -405,7 +405,7 @@ ] }, { - "key": "GetRoughnessFactor", + "base": "GetRoughnessFactor", "context": "MaterialData", "entry": { "name": "In", @@ -438,7 +438,7 @@ ] }, { - "key": "GetUseAOMap", + "base": "GetUseAOMap", "context": "MaterialData", "entry": { "name": "In", @@ -471,7 +471,7 @@ ] }, { - "key": "GetTexture", + "base": "GetTexture", "context": "MaterialData", "entry": { "name": "In", @@ -510,7 +510,7 @@ ] }, { - "key": "IsNoDraw", + "base": "IsNoDraw", "context": "MaterialData", "entry": { "name": "In", @@ -543,7 +543,7 @@ ] }, { - "key": "GetOpacity", + "base": "GetOpacity", "context": "MaterialData", "entry": { "name": "In", @@ -576,7 +576,7 @@ ] }, { - "key": "GetUseColorMap", + "base": "GetUseColorMap", "context": "MaterialData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math.names index 546608f0b0..4cb39e58a4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Math", + "base": "Math", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "Math", "entry": { "name": "In", @@ -48,7 +48,7 @@ ] }, { - "key": "Round", + "base": "Round", "context": "Math", "entry": { "name": "In", @@ -80,7 +80,7 @@ ] }, { - "key": "Sqrt", + "base": "Sqrt", "context": "Math", "entry": { "name": "In", @@ -112,7 +112,7 @@ ] }, { - "key": "Mod", + "base": "Mod", "context": "Math", "entry": { "name": "In", @@ -150,7 +150,7 @@ ] }, { - "key": "Ceil", + "base": "Ceil", "context": "Math", "entry": { "name": "In", @@ -182,7 +182,7 @@ ] }, { - "key": "IsEven", + "base": "IsEven", "context": "Math", "entry": { "name": "In", @@ -214,7 +214,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "Math", "entry": { "name": "In", @@ -258,7 +258,7 @@ ] }, { - "key": "ArcSin", + "base": "ArcSin", "context": "Math", "entry": { "name": "In", @@ -290,7 +290,7 @@ ] }, { - "key": "ArcTan", + "base": "ArcTan", "context": "Math", "entry": { "name": "In", @@ -322,7 +322,7 @@ ] }, { - "key": "Max", + "base": "Max", "context": "Math", "entry": { "name": "In", @@ -360,7 +360,7 @@ ] }, { - "key": "Tan", + "base": "Tan", "context": "Math", "entry": { "name": "In", @@ -392,7 +392,7 @@ ] }, { - "key": "ArcTan2", + "base": "ArcTan2", "context": "Math", "entry": { "name": "In", @@ -430,7 +430,7 @@ ] }, { - "key": "Floor", + "base": "Floor", "context": "Math", "entry": { "name": "In", @@ -462,7 +462,7 @@ ] }, { - "key": "Min", + "base": "Min", "context": "Math", "entry": { "name": "In", @@ -500,7 +500,7 @@ ] }, { - "key": "Lerp", + "base": "Lerp", "context": "Math", "entry": { "name": "In", @@ -544,7 +544,7 @@ ] }, { - "key": "LerpInverse", + "base": "LerpInverse", "context": "Math", "entry": { "name": "In", @@ -588,7 +588,7 @@ ] }, { - "key": "IsOdd", + "base": "IsOdd", "context": "Math", "entry": { "name": "In", @@ -620,7 +620,7 @@ ] }, { - "key": "Abs", + "base": "Abs", "context": "Math", "entry": { "name": "In", @@ -651,7 +651,7 @@ ] }, { - "key": "RadToDeg", + "base": "RadToDeg", "context": "Math", "entry": { "name": "In", @@ -683,7 +683,7 @@ ] }, { - "key": "Sin", + "base": "Sin", "context": "Math", "entry": { "name": "In", @@ -715,7 +715,7 @@ ] }, { - "key": "Cos", + "base": "Cos", "context": "Math", "entry": { "name": "In", @@ -747,7 +747,7 @@ ] }, { - "key": "ArcCos", + "base": "ArcCos", "context": "Math", "entry": { "name": "In", @@ -779,7 +779,7 @@ ] }, { - "key": "Sign", + "base": "Sign", "context": "Math", "entry": { "name": "In", @@ -811,7 +811,7 @@ ] }, { - "key": "Clamp", + "base": "Clamp", "context": "Math", "entry": { "name": "In", @@ -855,7 +855,7 @@ ] }, { - "key": "GetSinCos", + "base": "GetSinCos", "context": "Math", "entry": { "name": "In", @@ -891,7 +891,7 @@ ] }, { - "key": "DegToRad", + "base": "DegToRad", "context": "Math", "entry": { "name": "In", @@ -923,7 +923,7 @@ ] }, { - "key": "Pow", + "base": "Pow", "context": "Math", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathAABB_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathAABB_VM.names index b8a8e84eea..56f6267643 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathAABB_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathAABB_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathAABB_VM", + "base": "MathAABB_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Overlaps", + "base": "Overlaps", "context": "MathAABB_VM", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "SurfaceArea", + "base": "SurfaceArea", "context": "MathAABB_VM", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "ToSphere", + "base": "ToSphere", "context": "MathAABB_VM", "entry": { "name": "In", @@ -111,7 +111,7 @@ ] }, { - "key": "FromOBB", + "base": "FromOBB", "context": "MathAABB_VM", "entry": { "name": "In", @@ -143,7 +143,7 @@ ] }, { - "key": "Translate", + "base": "Translate", "context": "MathAABB_VM", "entry": { "name": "In", @@ -181,7 +181,7 @@ ] }, { - "key": "ContainsVector3", + "base": "ContainsVector3", "context": "MathAABB_VM", "entry": { "name": "In", @@ -219,7 +219,7 @@ ] }, { - "key": "Distance", + "base": "Distance", "context": "MathAABB_VM", "entry": { "name": "In", @@ -257,7 +257,7 @@ ] }, { - "key": "FromPoint", + "base": "FromPoint", "context": "MathAABB_VM", "entry": { "name": "In", @@ -289,7 +289,7 @@ ] }, { - "key": "Null", + "base": "Null", "context": "MathAABB_VM", "entry": { "name": "In", @@ -313,7 +313,7 @@ ] }, { - "key": "YExtent", + "base": "YExtent", "context": "MathAABB_VM", "entry": { "name": "In", @@ -345,7 +345,7 @@ ] }, { - "key": "Clamp", + "base": "Clamp", "context": "MathAABB_VM", "entry": { "name": "In", @@ -383,7 +383,7 @@ ] }, { - "key": "ContainsAABB", + "base": "ContainsAABB", "context": "MathAABB_VM", "entry": { "name": "In", @@ -421,7 +421,7 @@ ] }, { - "key": "Expand", + "base": "Expand", "context": "MathAABB_VM", "entry": { "name": "In", @@ -459,7 +459,7 @@ ] }, { - "key": "Extents", + "base": "Extents", "context": "MathAABB_VM", "entry": { "name": "In", @@ -491,7 +491,7 @@ ] }, { - "key": "FromCenterHalfExtents", + "base": "FromCenterHalfExtents", "context": "MathAABB_VM", "entry": { "name": "In", @@ -529,7 +529,7 @@ ] }, { - "key": "GetMin", + "base": "GetMin", "context": "MathAABB_VM", "entry": { "name": "In", @@ -561,7 +561,7 @@ ] }, { - "key": "ApplyTransform", + "base": "ApplyTransform", "context": "MathAABB_VM", "entry": { "name": "In", @@ -599,7 +599,7 @@ ] }, { - "key": "Center", + "base": "Center", "context": "MathAABB_VM", "entry": { "name": "In", @@ -631,7 +631,7 @@ ] }, { - "key": "FromMinMax", + "base": "FromMinMax", "context": "MathAABB_VM", "entry": { "name": "In", @@ -669,7 +669,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathAABB_VM", "entry": { "name": "In", @@ -701,7 +701,7 @@ ] }, { - "key": "IsValid", + "base": "IsValid", "context": "MathAABB_VM", "entry": { "name": "In", @@ -733,7 +733,7 @@ ] }, { - "key": "GetMax", + "base": "GetMax", "context": "MathAABB_VM", "entry": { "name": "In", @@ -765,7 +765,7 @@ ] }, { - "key": "XExtent", + "base": "XExtent", "context": "MathAABB_VM", "entry": { "name": "In", @@ -797,7 +797,7 @@ ] }, { - "key": "AddPoint", + "base": "AddPoint", "context": "MathAABB_VM", "entry": { "name": "In", @@ -835,7 +835,7 @@ ] }, { - "key": "AddAABB", + "base": "AddAABB", "context": "MathAABB_VM", "entry": { "name": "In", @@ -873,7 +873,7 @@ ] }, { - "key": "FromCenterRadius", + "base": "FromCenterRadius", "context": "MathAABB_VM", "entry": { "name": "In", @@ -911,7 +911,7 @@ ] }, { - "key": "ZExtent", + "base": "ZExtent", "context": "MathAABB_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathColor_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathColor_VM.names index d63799df8b..cc13a61532 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathColor_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathColor_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathColor_VM", + "base": "MathColor_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "One", + "base": "One", "context": "MathColor_VM", "entry": { "name": "In", @@ -33,7 +33,7 @@ ] }, { - "key": "LinearToGamma", + "base": "LinearToGamma", "context": "MathColor_VM", "entry": { "name": "In", @@ -65,7 +65,7 @@ ] }, { - "key": "FromVector3", + "base": "FromVector3", "context": "MathColor_VM", "entry": { "name": "In", @@ -97,7 +97,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "MathColor_VM", "entry": { "name": "In", @@ -135,7 +135,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "MathColor_VM", "entry": { "name": "In", @@ -167,7 +167,7 @@ ] }, { - "key": "Dot3", + "base": "Dot3", "context": "MathColor_VM", "entry": { "name": "In", @@ -205,7 +205,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "MathColor_VM", "entry": { "name": "In", @@ -243,7 +243,7 @@ ] }, { - "key": "FromValues", + "base": "FromValues", "context": "MathColor_VM", "entry": { "name": "In", @@ -293,7 +293,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "MathColor_VM", "entry": { "name": "In", @@ -331,7 +331,7 @@ ] }, { - "key": "FromVector3AndNumber", + "base": "FromVector3AndNumber", "context": "MathColor_VM", "entry": { "name": "In", @@ -369,7 +369,7 @@ ] }, { - "key": "GammaToLinear", + "base": "GammaToLinear", "context": "MathColor_VM", "entry": { "name": "In", @@ -401,7 +401,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "MathColor_VM", "entry": { "name": "In", @@ -445,7 +445,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "MathColor_VM", "entry": { "name": "In", @@ -483,7 +483,7 @@ ] }, { - "key": "MultiplyByColor", + "base": "MultiplyByColor", "context": "MathColor_VM", "entry": { "name": "In", @@ -521,7 +521,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "MathColor_VM", "entry": { "name": "In", @@ -559,7 +559,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "MathColor_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathCrc32_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathCrc32_VM.names index 1b2b5a4e7d..339b02c5fd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathCrc32_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathCrc32_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathCrc32_VM", + "base": "MathCrc32_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "FromString", + "base": "FromString", "context": "MathCrc32_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathMatrix3x3_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathMatrix3x3_VM.names index a66332a5fa..b1722ef645 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathMatrix3x3_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathMatrix3x3_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathMatrix3x3_VM", + "base": "MathMatrix3x3_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Transpose", + "base": "Transpose", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "Zero", + "base": "Zero", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -65,7 +65,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -103,7 +103,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -147,7 +147,7 @@ ] }, { - "key": "Invert", + "base": "Invert", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -179,7 +179,7 @@ ] }, { - "key": "GetDiagonal", + "base": "GetDiagonal", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -211,7 +211,7 @@ ] }, { - "key": "GetColumn", + "base": "GetColumn", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -249,7 +249,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -287,7 +287,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -325,7 +325,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -357,7 +357,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -395,7 +395,7 @@ ] }, { - "key": "ToAdjugate", + "base": "ToAdjugate", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -427,7 +427,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -471,7 +471,7 @@ ] }, { - "key": "MultiplyByMatrix", + "base": "MultiplyByMatrix", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -509,7 +509,7 @@ ] }, { - "key": "IsOrthogonal", + "base": "IsOrthogonal", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -541,7 +541,7 @@ ] }, { - "key": "Orthogonalize", + "base": "Orthogonalize", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -573,7 +573,7 @@ ] }, { - "key": "GetRows", + "base": "GetRows", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -605,7 +605,7 @@ ] }, { - "key": "FromCrossProduct", + "base": "FromCrossProduct", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -637,7 +637,7 @@ ] }, { - "key": "GetColumns", + "base": "GetColumns", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -669,7 +669,7 @@ ] }, { - "key": "FromTransform", + "base": "FromTransform", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -701,7 +701,7 @@ ] }, { - "key": "FromScale", + "base": "FromScale", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -733,7 +733,7 @@ ] }, { - "key": "ToScale", + "base": "ToScale", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -765,7 +765,7 @@ ] }, { - "key": "FromQuaternion", + "base": "FromQuaternion", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -797,7 +797,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -835,7 +835,7 @@ ] }, { - "key": "GetRow", + "base": "GetRow", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -873,7 +873,7 @@ ] }, { - "key": "FromRotationYDegrees", + "base": "FromRotationYDegrees", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -905,7 +905,7 @@ ] }, { - "key": "FromRows", + "base": "FromRows", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -949,7 +949,7 @@ ] }, { - "key": "FromDiagonal", + "base": "FromDiagonal", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -981,7 +981,7 @@ ] }, { - "key": "FromRotationZDegrees", + "base": "FromRotationZDegrees", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -1013,7 +1013,7 @@ ] }, { - "key": "FromMatrix4x4", + "base": "FromMatrix4x4", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -1045,7 +1045,7 @@ ] }, { - "key": "FromColumns", + "base": "FromColumns", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -1089,7 +1089,7 @@ ] }, { - "key": "FromRotationXDegrees", + "base": "FromRotationXDegrees", "context": "MathMatrix3x3_VM", "entry": { "name": "In", @@ -1121,7 +1121,7 @@ ] }, { - "key": "ToDeterminant", + "base": "ToDeterminant", "context": "MathMatrix3x3_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathMatrix4x4_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathMatrix4x4_VM.names index ec8549b966..7df54c7060 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathMatrix4x4_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathMatrix4x4_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathMatrix4x4_VM", + "base": "MathMatrix4x4_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetRow", + "base": "GetRow", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "FromRotationXDegrees", + "base": "FromRotationXDegrees", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "FromRotationZDegrees", + "base": "FromRotationZDegrees", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -111,7 +111,7 @@ ] }, { - "key": "FromRows", + "base": "FromRows", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -161,7 +161,7 @@ ] }, { - "key": "ToScale", + "base": "ToScale", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -193,7 +193,7 @@ ] }, { - "key": "FromQuaternion", + "base": "FromQuaternion", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -225,7 +225,7 @@ ] }, { - "key": "FromScale", + "base": "FromScale", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -257,7 +257,7 @@ ] }, { - "key": "FromTransform", + "base": "FromTransform", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -289,7 +289,7 @@ ] }, { - "key": "GetTranslation", + "base": "GetTranslation", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -321,7 +321,7 @@ ] }, { - "key": "FromQuaternionAndTranslation", + "base": "FromQuaternionAndTranslation", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -359,7 +359,7 @@ ] }, { - "key": "GetColumn", + "base": "GetColumn", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -397,7 +397,7 @@ ] }, { - "key": "GetDiagonal", + "base": "GetDiagonal", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -429,7 +429,7 @@ ] }, { - "key": "Invert", + "base": "Invert", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -461,7 +461,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -505,7 +505,7 @@ ] }, { - "key": "FromMatrix3x3", + "base": "FromMatrix3x3", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -537,7 +537,7 @@ ] }, { - "key": "GetColumns", + "base": "GetColumns", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -569,7 +569,7 @@ ] }, { - "key": "GetRows", + "base": "GetRows", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -601,7 +601,7 @@ ] }, { - "key": "MultiplyByMatrix", + "base": "MultiplyByMatrix", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -639,7 +639,7 @@ ] }, { - "key": "FromDiagonal", + "base": "FromDiagonal", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -671,7 +671,7 @@ ] }, { - "key": "FromRotationYDegrees", + "base": "FromRotationYDegrees", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -703,7 +703,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -747,7 +747,7 @@ ] }, { - "key": "Transpose", + "base": "Transpose", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -779,7 +779,7 @@ ] }, { - "key": "FromColumns", + "base": "FromColumns", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -829,7 +829,7 @@ ] }, { - "key": "FromTranslation", + "base": "FromTranslation", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -861,7 +861,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -893,7 +893,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "MathMatrix4x4_VM", "entry": { "name": "In", @@ -931,7 +931,7 @@ ] }, { - "key": "Zero", + "base": "Zero", "context": "MathMatrix4x4_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathOBB_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathOBB_VM.names index 4776bbbd8a..4932723ee9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathOBB_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathOBB_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathOBB_VM", + "base": "MathOBB_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetPosition", + "base": "GetPosition", "context": "MathOBB_VM", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetAxisY", + "base": "GetAxisY", "context": "MathOBB_VM", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "GetAxisX", + "base": "GetAxisX", "context": "MathOBB_VM", "entry": { "name": "In", @@ -105,7 +105,7 @@ ] }, { - "key": "FromAabb", + "base": "FromAabb", "context": "MathOBB_VM", "entry": { "name": "In", @@ -137,7 +137,7 @@ ] }, { - "key": "FromPositionRotationAndHalfLengths", + "base": "FromPositionRotationAndHalfLengths", "context": "MathOBB_VM", "entry": { "name": "In", @@ -181,7 +181,7 @@ ] }, { - "key": "GetAxisZ", + "base": "GetAxisZ", "context": "MathOBB_VM", "entry": { "name": "In", @@ -213,7 +213,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathOBB_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathPlane_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathPlane_VM.names index adea5df187..36d88d5fe9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathPlane_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathPlane_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathPlane_VM", + "base": "MathPlane_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetPlaneEquationCoefficients", + "base": "GetPlaneEquationCoefficients", "context": "MathPlane_VM", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetDistance", + "base": "GetDistance", "context": "MathPlane_VM", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "Project", + "base": "Project", "context": "MathPlane_VM", "entry": { "name": "In", @@ -111,7 +111,7 @@ ] }, { - "key": "FromNormalAndPoint", + "base": "FromNormalAndPoint", "context": "MathPlane_VM", "entry": { "name": "In", @@ -149,7 +149,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathPlane_VM", "entry": { "name": "In", @@ -181,7 +181,7 @@ ] }, { - "key": "Transform", + "base": "Transform", "context": "MathPlane_VM", "entry": { "name": "In", @@ -219,7 +219,7 @@ ] }, { - "key": "DistanceToPoint", + "base": "DistanceToPoint", "context": "MathPlane_VM", "entry": { "name": "In", @@ -257,7 +257,7 @@ ] }, { - "key": "FromCoefficients", + "base": "FromCoefficients", "context": "MathPlane_VM", "entry": { "name": "In", @@ -307,7 +307,7 @@ ] }, { - "key": "FromNormalAndDistance", + "base": "FromNormalAndDistance", "context": "MathPlane_VM", "entry": { "name": "In", @@ -345,7 +345,7 @@ ] }, { - "key": "GetNormal", + "base": "GetNormal", "context": "MathPlane_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathQuaternion_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathQuaternion_VM.names index 4fc4390979..cc9f2ba875 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathQuaternion_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathQuaternion_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathQuaternion_VM", + "base": "MathQuaternion_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Subtract", + "base": "Subtract", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "RotationYDegrees", + "base": "RotationYDegrees", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "Normalize", + "base": "Normalize", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -111,7 +111,7 @@ ] }, { - "key": "LengthReciprocal", + "base": "LengthReciprocal", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -143,7 +143,7 @@ ] }, { - "key": "CreateFromEulerAngles", + "base": "CreateFromEulerAngles", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -187,7 +187,7 @@ ] }, { - "key": "IsIdentity", + "base": "IsIdentity", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -225,7 +225,7 @@ ] }, { - "key": "FromTransform", + "base": "FromTransform", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -257,7 +257,7 @@ ] }, { - "key": "Lerp", + "base": "Lerp", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -301,7 +301,7 @@ ] }, { - "key": "RotationZDegrees", + "base": "RotationZDegrees", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -333,7 +333,7 @@ ] }, { - "key": "ConvertTransformToRotation", + "base": "ConvertTransformToRotation", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -365,7 +365,7 @@ ] }, { - "key": "ShortestArc", + "base": "ShortestArc", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -403,7 +403,7 @@ ] }, { - "key": "RotationXDegrees", + "base": "RotationXDegrees", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -435,7 +435,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -473,7 +473,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -517,7 +517,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -549,7 +549,7 @@ ] }, { - "key": "Conjugate", + "base": "Conjugate", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -581,7 +581,7 @@ ] }, { - "key": "ToAngleDegrees", + "base": "ToAngleDegrees", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -613,7 +613,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -651,7 +651,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -683,7 +683,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -721,7 +721,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -759,7 +759,7 @@ ] }, { - "key": "Slerp", + "base": "Slerp", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -803,7 +803,7 @@ ] }, { - "key": "InvertFull", + "base": "InvertFull", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -835,7 +835,7 @@ ] }, { - "key": "FromMatrix4x4", + "base": "FromMatrix4x4", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -867,7 +867,7 @@ ] }, { - "key": "RotateVector3", + "base": "RotateVector3", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -905,7 +905,7 @@ ] }, { - "key": "FromMatrix3x3", + "base": "FromMatrix3x3", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -937,7 +937,7 @@ ] }, { - "key": "Squad", + "base": "Squad", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -993,7 +993,7 @@ ] }, { - "key": "FromAxisAngleDegrees", + "base": "FromAxisAngleDegrees", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -1031,7 +1031,7 @@ ] }, { - "key": "LengthSquared", + "base": "LengthSquared", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -1063,7 +1063,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -1095,7 +1095,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "MathQuaternion_VM", "entry": { "name": "In", @@ -1133,7 +1133,7 @@ ] }, { - "key": "MultiplyByRotation", + "base": "MultiplyByRotation", "context": "MathQuaternion_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathRandom_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathRandom_VM.names index 0ac7a5b5a0..9dffa229ca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathRandom_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathRandom_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathRandom_VM", + "base": "MathRandom_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "RandomPointOnSphere", + "base": "RandomPointOnSphere", "context": "MathRandom_VM", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "RandomPointInCircle", + "base": "RandomPointInCircle", "context": "MathRandom_VM", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "RandomPointInSquare", + "base": "RandomPointInSquare", "context": "MathRandom_VM", "entry": { "name": "In", @@ -105,7 +105,7 @@ ] }, { - "key": "RandomUnitVector2", + "base": "RandomUnitVector2", "context": "MathRandom_VM", "entry": { "name": "In", @@ -129,7 +129,7 @@ ] }, { - "key": "RandomVector2", + "base": "RandomVector2", "context": "MathRandom_VM", "entry": { "name": "In", @@ -167,7 +167,7 @@ ] }, { - "key": "RandomPointInCylinder", + "base": "RandomPointInCylinder", "context": "MathRandom_VM", "entry": { "name": "In", @@ -205,7 +205,7 @@ ] }, { - "key": "RandomQuaternion", + "base": "RandomQuaternion", "context": "MathRandom_VM", "entry": { "name": "In", @@ -243,7 +243,7 @@ ] }, { - "key": "RandomVector4", + "base": "RandomVector4", "context": "MathRandom_VM", "entry": { "name": "In", @@ -281,7 +281,7 @@ ] }, { - "key": "RandomPointInBox", + "base": "RandomPointInBox", "context": "MathRandom_VM", "entry": { "name": "In", @@ -313,7 +313,7 @@ ] }, { - "key": "RandomPointOnCircle", + "base": "RandomPointOnCircle", "context": "MathRandom_VM", "entry": { "name": "In", @@ -345,7 +345,7 @@ ] }, { - "key": "RandomPointInEllipsoid", + "base": "RandomPointInEllipsoid", "context": "MathRandom_VM", "entry": { "name": "In", @@ -377,7 +377,7 @@ ] }, { - "key": "RandomInteger", + "base": "RandomInteger", "context": "MathRandom_VM", "entry": { "name": "In", @@ -415,7 +415,7 @@ ] }, { - "key": "RandomPointInWedge", + "base": "RandomPointInWedge", "context": "MathRandom_VM", "entry": { "name": "In", @@ -477,7 +477,7 @@ ] }, { - "key": "RandomGrayscale", + "base": "RandomGrayscale", "context": "MathRandom_VM", "entry": { "name": "In", @@ -515,7 +515,7 @@ ] }, { - "key": "RandomPointInCone", + "base": "RandomPointInCone", "context": "MathRandom_VM", "entry": { "name": "In", @@ -553,7 +553,7 @@ ] }, { - "key": "RandomColor", + "base": "RandomColor", "context": "MathRandom_VM", "entry": { "name": "In", @@ -591,7 +591,7 @@ ] }, { - "key": "RandomNumber", + "base": "RandomNumber", "context": "MathRandom_VM", "entry": { "name": "In", @@ -629,7 +629,7 @@ ] }, { - "key": "RandomPointInSphere", + "base": "RandomPointInSphere", "context": "MathRandom_VM", "entry": { "name": "In", @@ -661,7 +661,7 @@ ] }, { - "key": "RandomUnitVector3", + "base": "RandomUnitVector3", "context": "MathRandom_VM", "entry": { "name": "In", @@ -685,7 +685,7 @@ ] }, { - "key": "RandomVector3", + "base": "RandomVector3", "context": "MathRandom_VM", "entry": { "name": "In", @@ -723,7 +723,7 @@ ] }, { - "key": "RandomPointInArc", + "base": "RandomPointInArc", "context": "MathRandom_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathTransform_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathTransform_VM.names index da20b78d90..392596d90b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathTransform_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathTransform_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathTransform_VM", + "base": "MathTransform_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "RotationZDegrees", + "base": "RotationZDegrees", "context": "MathTransform_VM", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetUp", + "base": "GetUp", "context": "MathTransform_VM", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "GetForward", + "base": "GetForward", "context": "MathTransform_VM", "entry": { "name": "In", @@ -117,7 +117,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "MathTransform_VM", "entry": { "name": "In", @@ -161,7 +161,7 @@ ] }, { - "key": "RotationXDegrees", + "base": "RotationXDegrees", "context": "MathTransform_VM", "entry": { "name": "In", @@ -193,7 +193,7 @@ ] }, { - "key": "FromTranslation", + "base": "FromTranslation", "context": "MathTransform_VM", "entry": { "name": "In", @@ -225,7 +225,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathTransform_VM", "entry": { "name": "In", @@ -257,7 +257,7 @@ ] }, { - "key": "MultiplyByUniformScale", + "base": "MultiplyByUniformScale", "context": "MathTransform_VM", "entry": { "name": "In", @@ -295,7 +295,7 @@ ] }, { - "key": "MultiplyByTransform", + "base": "MultiplyByTransform", "context": "MathTransform_VM", "entry": { "name": "In", @@ -333,7 +333,7 @@ ] }, { - "key": "FromRotation", + "base": "FromRotation", "context": "MathTransform_VM", "entry": { "name": "In", @@ -365,7 +365,7 @@ ] }, { - "key": "RotationYDegrees", + "base": "RotationYDegrees", "context": "MathTransform_VM", "entry": { "name": "In", @@ -397,7 +397,7 @@ ] }, { - "key": "FromRotationAndTranslation", + "base": "FromRotationAndTranslation", "context": "MathTransform_VM", "entry": { "name": "In", @@ -435,7 +435,7 @@ ] }, { - "key": "MultiplyByVector3", + "base": "MultiplyByVector3", "context": "MathTransform_VM", "entry": { "name": "In", @@ -473,7 +473,7 @@ ] }, { - "key": "MultiplyByVector4", + "base": "MultiplyByVector4", "context": "MathTransform_VM", "entry": { "name": "In", @@ -511,7 +511,7 @@ ] }, { - "key": "ToScale", + "base": "ToScale", "context": "MathTransform_VM", "entry": { "name": "In", @@ -543,7 +543,7 @@ ] }, { - "key": "FromMatrix3x3", + "base": "FromMatrix3x3", "context": "MathTransform_VM", "entry": { "name": "In", @@ -575,7 +575,7 @@ ] }, { - "key": "GetRight", + "base": "GetRight", "context": "MathTransform_VM", "entry": { "name": "In", @@ -613,7 +613,7 @@ ] }, { - "key": "IsOrthogonal", + "base": "IsOrthogonal", "context": "MathTransform_VM", "entry": { "name": "In", @@ -651,7 +651,7 @@ ] }, { - "key": "Orthogonalize", + "base": "Orthogonalize", "context": "MathTransform_VM", "entry": { "name": "In", @@ -683,7 +683,7 @@ ] }, { - "key": "FromMatrix3x3AndTranslation", + "base": "FromMatrix3x3AndTranslation", "context": "MathTransform_VM", "entry": { "name": "In", @@ -721,7 +721,7 @@ ] }, { - "key": "FromScale", + "base": "FromScale", "context": "MathTransform_VM", "entry": { "name": "In", @@ -753,7 +753,7 @@ ] }, { - "key": "GetTranslation", + "base": "GetTranslation", "context": "MathTransform_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathUtils.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathUtils.names index 20232e4b0a..d394306ed0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathUtils.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathUtils.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathUtils", + "base": "MathUtils", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ConvertEulerDegreesToQuaternion", + "base": "ConvertEulerDegreesToQuaternion", "context": "MathUtils", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "ConvertEulerDegreesToTransformPrecise", + "base": "ConvertEulerDegreesToTransformPrecise", "context": "MathUtils", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "ConvertEulerDegreesToTransform", + "base": "ConvertEulerDegreesToTransform", "context": "MathUtils", "entry": { "name": "In", @@ -104,7 +104,7 @@ ] }, { - "key": "ConvertQuaternionToEulerRadians", + "base": "ConvertQuaternionToEulerRadians", "context": "MathUtils", "entry": { "name": "In", @@ -135,7 +135,7 @@ ] }, { - "key": "CreateLookAt", + "base": "CreateLookAt", "context": "MathUtils", "entry": { "name": "In", @@ -179,7 +179,7 @@ ] }, { - "key": "ConvertTransformToEulerRadians", + "base": "ConvertTransformToEulerRadians", "context": "MathUtils", "entry": { "name": "In", @@ -210,7 +210,7 @@ ] }, { - "key": "ConvertQuaternionToEulerDegrees", + "base": "ConvertQuaternionToEulerDegrees", "context": "MathUtils", "entry": { "name": "In", @@ -241,7 +241,7 @@ ] }, { - "key": "ConvertTransformToEulerDegrees", + "base": "ConvertTransformToEulerDegrees", "context": "MathUtils", "entry": { "name": "In", @@ -272,7 +272,7 @@ ] }, { - "key": "ConvertEulerRadiansToQuaternion", + "base": "ConvertEulerRadiansToQuaternion", "context": "MathUtils", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector2_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector2_VM.names index aefb8a3b4b..ad6cca60a4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector2_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector2_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathVector2_VM", + "base": "MathVector2_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "DirectionTo", + "base": "DirectionTo", "context": "MathVector2_VM", "entry": { "name": "In", @@ -53,7 +53,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "MathVector2_VM", "entry": { "name": "In", @@ -91,7 +91,7 @@ ] }, { - "key": "Project", + "base": "Project", "context": "MathVector2_VM", "entry": { "name": "In", @@ -129,7 +129,7 @@ ] }, { - "key": "Distance", + "base": "Distance", "context": "MathVector2_VM", "entry": { "name": "In", @@ -167,7 +167,7 @@ ] }, { - "key": "FromValues", + "base": "FromValues", "context": "MathVector2_VM", "entry": { "name": "In", @@ -205,7 +205,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "MathVector2_VM", "entry": { "name": "In", @@ -243,7 +243,7 @@ ] }, { - "key": "Angle", + "base": "Angle", "context": "MathVector2_VM", "entry": { "name": "In", @@ -275,7 +275,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "MathVector2_VM", "entry": { "name": "In", @@ -307,7 +307,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "MathVector2_VM", "entry": { "name": "In", @@ -345,7 +345,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "MathVector2_VM", "entry": { "name": "In", @@ -383,7 +383,7 @@ ] }, { - "key": "Clamp", + "base": "Clamp", "context": "MathVector2_VM", "entry": { "name": "In", @@ -427,7 +427,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "MathVector2_VM", "entry": { "name": "In", @@ -465,7 +465,7 @@ ] }, { - "key": "Slerp", + "base": "Slerp", "context": "MathVector2_VM", "entry": { "name": "In", @@ -509,7 +509,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "MathVector2_VM", "entry": { "name": "In", @@ -547,7 +547,7 @@ ] }, { - "key": "SetY", + "base": "SetY", "context": "MathVector2_VM", "entry": { "name": "In", @@ -585,7 +585,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "MathVector2_VM", "entry": { "name": "In", @@ -629,7 +629,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "MathVector2_VM", "entry": { "name": "In", @@ -667,7 +667,7 @@ ] }, { - "key": "IsNormalized", + "base": "IsNormalized", "context": "MathVector2_VM", "entry": { "name": "In", @@ -705,7 +705,7 @@ ] }, { - "key": "LengthSquared", + "base": "LengthSquared", "context": "MathVector2_VM", "entry": { "name": "In", @@ -737,7 +737,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathVector2_VM", "entry": { "name": "In", @@ -769,7 +769,7 @@ ] }, { - "key": "ToPerpendicular", + "base": "ToPerpendicular", "context": "MathVector2_VM", "entry": { "name": "In", @@ -801,7 +801,7 @@ ] }, { - "key": "Normalize", + "base": "Normalize", "context": "MathVector2_VM", "entry": { "name": "In", @@ -833,7 +833,7 @@ ] }, { - "key": "Max", + "base": "Max", "context": "MathVector2_VM", "entry": { "name": "In", @@ -871,7 +871,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "MathVector2_VM", "entry": { "name": "In", @@ -909,7 +909,7 @@ ] }, { - "key": "Absolute", + "base": "Absolute", "context": "MathVector2_VM", "entry": { "name": "In", @@ -941,7 +941,7 @@ ] }, { - "key": "SetX", + "base": "SetX", "context": "MathVector2_VM", "entry": { "name": "In", @@ -979,7 +979,7 @@ ] }, { - "key": "Min", + "base": "Min", "context": "MathVector2_VM", "entry": { "name": "In", @@ -1017,7 +1017,7 @@ ] }, { - "key": "DivideByVector", + "base": "DivideByVector", "context": "MathVector2_VM", "entry": { "name": "In", @@ -1055,7 +1055,7 @@ ] }, { - "key": "DistanceSquared", + "base": "DistanceSquared", "context": "MathVector2_VM", "entry": { "name": "In", @@ -1093,7 +1093,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "MathVector2_VM", "entry": { "name": "In", @@ -1125,7 +1125,7 @@ ] }, { - "key": "Lerp", + "base": "Lerp", "context": "MathVector2_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector3_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector3_VM.names index 001fc94f4d..445031012f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector3_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector3_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathVector3_VM", + "base": "MathVector3_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Reciprocal", + "base": "Reciprocal", "context": "MathVector3_VM", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "MathVector3_VM", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "Project", + "base": "Project", "context": "MathVector3_VM", "entry": { "name": "In", @@ -117,7 +117,7 @@ ] }, { - "key": "Normalize", + "base": "Normalize", "context": "MathVector3_VM", "entry": { "name": "In", @@ -149,7 +149,7 @@ ] }, { - "key": "Distance", + "base": "Distance", "context": "MathVector3_VM", "entry": { "name": "In", @@ -187,7 +187,7 @@ ] }, { - "key": "SetZ", + "base": "SetZ", "context": "MathVector3_VM", "entry": { "name": "In", @@ -225,7 +225,7 @@ ] }, { - "key": "Max", + "base": "Max", "context": "MathVector3_VM", "entry": { "name": "In", @@ -263,7 +263,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "MathVector3_VM", "entry": { "name": "In", @@ -301,7 +301,7 @@ ] }, { - "key": "Absolute", + "base": "Absolute", "context": "MathVector3_VM", "entry": { "name": "In", @@ -333,7 +333,7 @@ ] }, { - "key": "BuildTangentBasis", + "base": "BuildTangentBasis", "context": "MathVector3_VM", "entry": { "name": "In", @@ -365,7 +365,7 @@ ] }, { - "key": "Clamp", + "base": "Clamp", "context": "MathVector3_VM", "entry": { "name": "In", @@ -409,7 +409,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "MathVector3_VM", "entry": { "name": "In", @@ -447,7 +447,7 @@ ] }, { - "key": "Slerp", + "base": "Slerp", "context": "MathVector3_VM", "entry": { "name": "In", @@ -491,7 +491,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "MathVector3_VM", "entry": { "name": "In", @@ -529,7 +529,7 @@ ] }, { - "key": "SetY", + "base": "SetY", "context": "MathVector3_VM", "entry": { "name": "In", @@ -567,7 +567,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "MathVector3_VM", "entry": { "name": "In", @@ -611,7 +611,7 @@ ] }, { - "key": "Cross", + "base": "Cross", "context": "MathVector3_VM", "entry": { "name": "In", @@ -649,7 +649,7 @@ ] }, { - "key": "DirectionTo", + "base": "DirectionTo", "context": "MathVector3_VM", "entry": { "name": "In", @@ -693,7 +693,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "MathVector3_VM", "entry": { "name": "In", @@ -731,7 +731,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "MathVector3_VM", "entry": { "name": "In", @@ -763,7 +763,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "MathVector3_VM", "entry": { "name": "In", @@ -801,7 +801,7 @@ ] }, { - "key": "IsPerpendicular", + "base": "IsPerpendicular", "context": "MathVector3_VM", "entry": { "name": "In", @@ -845,7 +845,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathVector3_VM", "entry": { "name": "In", @@ -877,7 +877,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "MathVector3_VM", "entry": { "name": "In", @@ -915,7 +915,7 @@ ] }, { - "key": "IsNormalized", + "base": "IsNormalized", "context": "MathVector3_VM", "entry": { "name": "In", @@ -953,7 +953,7 @@ ] }, { - "key": "LengthSquared", + "base": "LengthSquared", "context": "MathVector3_VM", "entry": { "name": "In", @@ -985,7 +985,7 @@ ] }, { - "key": "FromValues", + "base": "FromValues", "context": "MathVector3_VM", "entry": { "name": "In", @@ -1029,7 +1029,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "MathVector3_VM", "entry": { "name": "In", @@ -1067,7 +1067,7 @@ ] }, { - "key": "SetX", + "base": "SetX", "context": "MathVector3_VM", "entry": { "name": "In", @@ -1105,7 +1105,7 @@ ] }, { - "key": "LengthReciprocal", + "base": "LengthReciprocal", "context": "MathVector3_VM", "entry": { "name": "In", @@ -1137,7 +1137,7 @@ ] }, { - "key": "Min", + "base": "Min", "context": "MathVector3_VM", "entry": { "name": "In", @@ -1175,7 +1175,7 @@ ] }, { - "key": "DistanceSquared", + "base": "DistanceSquared", "context": "MathVector3_VM", "entry": { "name": "In", @@ -1213,7 +1213,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "MathVector3_VM", "entry": { "name": "In", @@ -1245,7 +1245,7 @@ ] }, { - "key": "DivideByVector", + "base": "DivideByVector", "context": "MathVector3_VM", "entry": { "name": "In", @@ -1283,7 +1283,7 @@ ] }, { - "key": "Lerp", + "base": "Lerp", "context": "MathVector3_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector4_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector4_VM.names index 87654cb3f9..5caadf4728 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector4_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathVector4_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MathVector4_VM", + "base": "MathVector4_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetW", + "base": "SetW", "context": "MathVector4_VM", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "SetX", + "base": "SetX", "context": "MathVector4_VM", "entry": { "name": "In", @@ -85,7 +85,7 @@ ] }, { - "key": "IsNormalized", + "base": "IsNormalized", "context": "MathVector4_VM", "entry": { "name": "In", @@ -123,7 +123,7 @@ ] }, { - "key": "LengthSquared", + "base": "LengthSquared", "context": "MathVector4_VM", "entry": { "name": "In", @@ -155,7 +155,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "MathVector4_VM", "entry": { "name": "In", @@ -193,7 +193,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "MathVector4_VM", "entry": { "name": "In", @@ -225,7 +225,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "MathVector4_VM", "entry": { "name": "In", @@ -263,7 +263,7 @@ ] }, { - "key": "FromValues", + "base": "FromValues", "context": "MathVector4_VM", "entry": { "name": "In", @@ -313,7 +313,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "MathVector4_VM", "entry": { "name": "In", @@ -345,7 +345,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "MathVector4_VM", "entry": { "name": "In", @@ -377,7 +377,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "MathVector4_VM", "entry": { "name": "In", @@ -415,7 +415,7 @@ ] }, { - "key": "DirectionTo", + "base": "DirectionTo", "context": "MathVector4_VM", "entry": { "name": "In", @@ -459,7 +459,7 @@ ] }, { - "key": "DivideByVector", + "base": "DivideByVector", "context": "MathVector4_VM", "entry": { "name": "In", @@ -497,7 +497,7 @@ ] }, { - "key": "LengthReciprocal", + "base": "LengthReciprocal", "context": "MathVector4_VM", "entry": { "name": "In", @@ -529,7 +529,7 @@ ] }, { - "key": "SetZ", + "base": "SetZ", "context": "MathVector4_VM", "entry": { "name": "In", @@ -567,7 +567,7 @@ ] }, { - "key": "Normalize", + "base": "Normalize", "context": "MathVector4_VM", "entry": { "name": "In", @@ -599,7 +599,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "MathVector4_VM", "entry": { "name": "In", @@ -637,7 +637,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "MathVector4_VM", "entry": { "name": "In", @@ -681,7 +681,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "MathVector4_VM", "entry": { "name": "In", @@ -719,7 +719,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "MathVector4_VM", "entry": { "name": "In", @@ -757,7 +757,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "MathVector4_VM", "entry": { "name": "In", @@ -795,7 +795,7 @@ ] }, { - "key": "Reciprocal", + "base": "Reciprocal", "context": "MathVector4_VM", "entry": { "name": "In", @@ -827,7 +827,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "MathVector4_VM", "entry": { "name": "In", @@ -865,7 +865,7 @@ ] }, { - "key": "Absolute", + "base": "Absolute", "context": "MathVector4_VM", "entry": { "name": "In", @@ -897,7 +897,7 @@ ] }, { - "key": "SetY", + "base": "SetY", "context": "MathVector4_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math_VM.names index d3b492ff31..e8a695f972 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Math_VM", + "base": "Math_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ThreeGeneric", + "base": "ThreeGeneric", "context": "Math_VM", "entry": { "name": "In", @@ -53,7 +53,7 @@ ] }, { - "key": "MultiplyAndAdd", + "base": "MultiplyAndAdd", "context": "Math_VM", "entry": { "name": "In", @@ -97,7 +97,7 @@ ] }, { - "key": "StringToNumber", + "base": "StringToNumber", "context": "Math_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Matrix3x4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Matrix3x4.names index a2f2bed3f9..4b529d8dda 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Matrix3x4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Matrix3x4.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Matrix3x4", + "base": "Matrix3x4", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreateZero", + "base": "CreateZero", "context": "Matrix3x4", "entry": { "name": "In", @@ -33,7 +33,7 @@ ] }, { - "key": "SetRotationPartFromQuaternion", + "base": "SetRotationPartFromQuaternion", "context": "Matrix3x4", "entry": { "name": "In", @@ -63,7 +63,7 @@ ] }, { - "key": "CreateFromColumns", + "base": "CreateFromColumns", "context": "Matrix3x4", "entry": { "name": "In", @@ -113,7 +113,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "Matrix3x4", "entry": { "name": "In", @@ -157,7 +157,7 @@ ] }, { - "key": "IsOrthogonal", + "base": "IsOrthogonal", "context": "Matrix3x4", "entry": { "name": "In", @@ -195,7 +195,7 @@ ] }, { - "key": "Orthogonalize", + "base": "Orthogonalize", "context": "Matrix3x4", "entry": { "name": "In", @@ -219,7 +219,7 @@ ] }, { - "key": "CreateFromMatrix3x3", + "base": "CreateFromMatrix3x3", "context": "Matrix3x4", "entry": { "name": "In", @@ -251,7 +251,7 @@ ] }, { - "key": "RetrieveScale", + "base": "RetrieveScale", "context": "Matrix3x4", "entry": { "name": "In", @@ -283,7 +283,7 @@ ] }, { - "key": "CreateRotationX", + "base": "CreateRotationX", "context": "Matrix3x4", "entry": { "name": "In", @@ -315,7 +315,7 @@ ] }, { - "key": "CreateFromMatrix3x3AndTranslation", + "base": "CreateFromMatrix3x3AndTranslation", "context": "Matrix3x4", "entry": { "name": "In", @@ -352,7 +352,7 @@ ] }, { - "key": "ToString", + "base": "ToString", "context": "Matrix3x4", "entry": { "name": "In", @@ -383,7 +383,7 @@ ] }, { - "key": "ExtractScale", + "base": "ExtractScale", "context": "Matrix3x4", "entry": { "name": "In", @@ -415,7 +415,7 @@ ] }, { - "key": "GetTranspose", + "base": "GetTranspose", "context": "Matrix3x4", "entry": { "name": "In", @@ -446,7 +446,7 @@ ] }, { - "key": "InvertFast", + "base": "InvertFast", "context": "Matrix3x4", "entry": { "name": "In", @@ -470,7 +470,7 @@ ] }, { - "key": "CreateFromRows", + "base": "CreateFromRows", "context": "Matrix3x4", "entry": { "name": "In", @@ -514,7 +514,7 @@ ] }, { - "key": "CreateTranslation", + "base": "CreateTranslation", "context": "Matrix3x4", "entry": { "name": "In", @@ -546,7 +546,7 @@ ] }, { - "key": "GetTranspose3x3", + "base": "GetTranspose3x3", "context": "Matrix3x4", "entry": { "name": "In", @@ -578,7 +578,7 @@ ] }, { - "key": "SetColumn", + "base": "SetColumn", "context": "Matrix3x4", "entry": { "name": "In", @@ -614,7 +614,7 @@ ] }, { - "key": "GetRow", + "base": "GetRow", "context": "Matrix3x4", "entry": { "name": "In", @@ -652,7 +652,7 @@ ] }, { - "key": "GetInverseFast", + "base": "GetInverseFast", "context": "Matrix3x4", "entry": { "name": "In", @@ -684,7 +684,7 @@ ] }, { - "key": "GetOrthogonalized", + "base": "GetOrthogonalized", "context": "Matrix3x4", "entry": { "name": "In", @@ -717,7 +717,7 @@ ] }, { - "key": "Multiply3x3", + "base": "Multiply3x3", "context": "Matrix3x4", "entry": { "name": "In", @@ -755,7 +755,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "Matrix3x4", "entry": { "name": "In", @@ -787,7 +787,7 @@ ] }, { - "key": "CreateFromQuaternion", + "base": "CreateFromQuaternion", "context": "Matrix3x4", "entry": { "name": "In", @@ -819,7 +819,7 @@ ] }, { - "key": "SetBasisAndTranslation", + "base": "SetBasisAndTranslation", "context": "Matrix3x4", "entry": { "name": "In", @@ -867,7 +867,7 @@ ] }, { - "key": "MultiplyVector4", + "base": "MultiplyVector4", "context": "Matrix3x4", "entry": { "name": "In", @@ -905,7 +905,7 @@ ] }, { - "key": "CreateScale", + "base": "CreateScale", "context": "Matrix3x4", "entry": { "name": "In", @@ -937,7 +937,7 @@ ] }, { - "key": "CreateDiagonal", + "base": "CreateDiagonal", "context": "Matrix3x4", "entry": { "name": "In", @@ -969,7 +969,7 @@ ] }, { - "key": "GetTranslation", + "base": "GetTranslation", "context": "Matrix3x4", "entry": { "name": "In", @@ -1001,7 +1001,7 @@ ] }, { - "key": "InvertFull", + "base": "InvertFull", "context": "Matrix3x4", "entry": { "name": "In", @@ -1025,7 +1025,7 @@ ] }, { - "key": "SetColumns", + "base": "SetColumns", "context": "Matrix3x4", "entry": { "name": "In", @@ -1073,7 +1073,7 @@ ] }, { - "key": "SetElement", + "base": "SetElement", "context": "Matrix3x4", "entry": { "name": "In", @@ -1115,7 +1115,7 @@ ] }, { - "key": "Equal", + "base": "Equal", "context": "Matrix3x4", "entry": { "name": "In", @@ -1153,7 +1153,7 @@ ] }, { - "key": "GetDeterminant3x3", + "base": "GetDeterminant3x3", "context": "Matrix3x4", "entry": { "name": "In", @@ -1185,7 +1185,7 @@ ] }, { - "key": "GetColumns", + "base": "GetColumns", "context": "Matrix3x4", "entry": { "name": "In", @@ -1233,7 +1233,7 @@ ] }, { - "key": "SetRows", + "base": "SetRows", "context": "Matrix3x4", "entry": { "name": "In", @@ -1275,7 +1275,7 @@ ] }, { - "key": "GetMultipliedByScale", + "base": "GetMultipliedByScale", "context": "Matrix3x4", "entry": { "name": "In", @@ -1313,7 +1313,7 @@ ] }, { - "key": "CreateRotationZ", + "base": "CreateRotationZ", "context": "Matrix3x4", "entry": { "name": "In", @@ -1345,7 +1345,7 @@ ] }, { - "key": "CreateFromQuaternionAndTranslation", + "base": "CreateFromQuaternionAndTranslation", "context": "Matrix3x4", "entry": { "name": "In", @@ -1383,7 +1383,7 @@ ] }, { - "key": "GetRowAsVector3", + "base": "GetRowAsVector3", "context": "Matrix3x4", "entry": { "name": "In", @@ -1421,7 +1421,7 @@ ] }, { - "key": "MultiplyMatrix3x4", + "base": "MultiplyMatrix3x4", "context": "Matrix3x4", "entry": { "name": "In", @@ -1459,7 +1459,7 @@ ] }, { - "key": "GetRows", + "base": "GetRows", "context": "Matrix3x4", "entry": { "name": "In", @@ -1501,7 +1501,7 @@ ] }, { - "key": "Clone", + "base": "Clone", "context": "Matrix3x4", "entry": { "name": "In", @@ -1533,7 +1533,7 @@ ] }, { - "key": "MultiplyVector3", + "base": "MultiplyVector3", "context": "Matrix3x4", "entry": { "name": "In", @@ -1571,7 +1571,7 @@ ] }, { - "key": "CreateIdentity", + "base": "CreateIdentity", "context": "Matrix3x4", "entry": { "name": "In", @@ -1595,7 +1595,7 @@ ] }, { - "key": "GetBasisAndTranslation", + "base": "GetBasisAndTranslation", "context": "Matrix3x4", "entry": { "name": "In", @@ -1643,7 +1643,7 @@ ] }, { - "key": "CreateFromValue", + "base": "CreateFromValue", "context": "Matrix3x4", "entry": { "name": "In", @@ -1675,7 +1675,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "Matrix3x4", "entry": { "name": "In", @@ -1719,7 +1719,7 @@ ] }, { - "key": "Transpose3x3", + "base": "Transpose3x3", "context": "Matrix3x4", "entry": { "name": "In", @@ -1743,7 +1743,7 @@ ] }, { - "key": "Transpose", + "base": "Transpose", "context": "Matrix3x4", "entry": { "name": "In", @@ -1767,7 +1767,7 @@ ] }, { - "key": "CreateRotationY", + "base": "CreateRotationY", "context": "Matrix3x4", "entry": { "name": "In", @@ -1799,7 +1799,7 @@ ] }, { - "key": "SetRow", + "base": "SetRow", "context": "Matrix3x4", "entry": { "name": "In", @@ -1835,7 +1835,7 @@ ] }, { - "key": "GetInverseFull", + "base": "GetInverseFull", "context": "Matrix3x4", "entry": { "name": "In", @@ -1867,7 +1867,7 @@ ] }, { - "key": "GetColumn", + "base": "GetColumn", "context": "Matrix3x4", "entry": { "name": "In", @@ -1905,7 +1905,7 @@ ] }, { - "key": "SetTranslation", + "base": "SetTranslation", "context": "Matrix3x4", "entry": { "name": "In", @@ -1935,7 +1935,7 @@ ] }, { - "key": "basisX", + "base": "basisX", "context": "Getter", "details": { "name": "Get Basis X" @@ -1958,7 +1958,7 @@ ] }, { - "key": "basisX", + "base": "basisX", "context": "Setter", "details": { "name": "Set Basis X" @@ -1979,7 +1979,7 @@ ] }, { - "key": "basisY", + "base": "basisY", "context": "Getter", "details": { "name": "Get Basis Y" @@ -2002,7 +2002,7 @@ ] }, { - "key": "basisY", + "base": "basisY", "context": "Setter", "details": { "name": "Set Basis Y" @@ -2023,7 +2023,7 @@ ] }, { - "key": "basisZ", + "base": "basisZ", "context": "Getter", "details": { "name": "Get Basis Z" @@ -2046,7 +2046,7 @@ ] }, { - "key": "basisZ", + "base": "basisZ", "context": "Setter", "details": { "name": "Set Basis Z" @@ -2067,7 +2067,7 @@ ] }, { - "key": "translation", + "base": "translation", "context": "Getter", "details": { "name": "Get Translation" @@ -2090,7 +2090,7 @@ ] }, { - "key": "translation", + "base": "translation", "context": "Setter", "details": { "name": "Set Translation" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshData.names index 9e6b60edbb..6e82906a0f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MeshData", + "base": "MeshData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetVertexIndex", + "base": "GetVertexIndex", "context": "MeshData", "entry": { "name": "In", @@ -53,7 +53,7 @@ ] }, { - "key": "GetPosition", + "base": "GetPosition", "context": "MeshData", "entry": { "name": "In", @@ -91,7 +91,7 @@ ] }, { - "key": "GetFaceInfo", + "base": "GetFaceInfo", "context": "MeshData", "entry": { "name": "In", @@ -129,7 +129,7 @@ ] }, { - "key": "HasNormalData", + "base": "HasNormalData", "context": "MeshData", "entry": { "name": "In", @@ -161,7 +161,7 @@ ] }, { - "key": "GetNormal", + "base": "GetNormal", "context": "MeshData", "entry": { "name": "In", @@ -199,7 +199,7 @@ ] }, { - "key": "GetUsedPointIndexForControlPoint", + "base": "GetUsedPointIndexForControlPoint", "context": "MeshData", "entry": { "name": "In", @@ -237,7 +237,7 @@ ] }, { - "key": "GetVertexCount", + "base": "GetVertexCount", "context": "MeshData", "entry": { "name": "In", @@ -269,7 +269,7 @@ ] }, { - "key": "GetFaceCount", + "base": "GetFaceCount", "context": "MeshData", "entry": { "name": "In", @@ -301,7 +301,7 @@ ] }, { - "key": "GetUsedControlPointCount", + "base": "GetUsedControlPointCount", "context": "MeshData", "entry": { "name": "In", @@ -333,7 +333,7 @@ ] }, { - "key": "GetFaceMaterialId", + "base": "GetFaceMaterialId", "context": "MeshData", "entry": { "name": "In", @@ -371,7 +371,7 @@ ] }, { - "key": "GetControlPointIndex", + "base": "GetControlPointIndex", "context": "MeshData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexBitangentData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexBitangentData.names index e46faa5cfa..71a6080574 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexBitangentData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexBitangentData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MeshVertexBitangentData", + "base": "MeshVertexBitangentData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetCount", + "base": "GetCount", "context": "MeshVertexBitangentData", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetBitangent", + "base": "GetBitangent", "context": "MeshVertexBitangentData", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "GetBitangentSetIndex", + "base": "GetBitangentSetIndex", "context": "MeshVertexBitangentData", "entry": { "name": "In", @@ -111,7 +111,7 @@ ] }, { - "key": "GetGenerationMethod", + "base": "GetGenerationMethod", "context": "MeshVertexBitangentData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexColorData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexColorData.names index 961508f944..a0a7c099c8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexColorData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexColorData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MeshVertexColorData", + "base": "MeshVertexColorData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetCustomName", + "base": "GetCustomName", "context": "MeshVertexColorData", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetCount", + "base": "GetCount", "context": "MeshVertexColorData", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "GetColor", + "base": "GetColor", "context": "MeshVertexColorData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexTangentData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexTangentData.names index 6866276dca..6e67408931 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexTangentData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexTangentData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MeshVertexTangentData", + "base": "MeshVertexTangentData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetCount", + "base": "GetCount", "context": "MeshVertexTangentData", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetTangent", + "base": "GetTangent", "context": "MeshVertexTangentData", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "GetTangentSetIndex", + "base": "GetTangentSetIndex", "context": "MeshVertexTangentData", "entry": { "name": "In", @@ -111,7 +111,7 @@ ] }, { - "key": "GetGenerationMethod", + "base": "GetGenerationMethod", "context": "MeshVertexTangentData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexUVData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexUVData.names index 474a4b91b3..78372ea7ae 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexUVData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MeshVertexUVData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MeshVertexUVData", + "base": "MeshVertexUVData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetCustomName", + "base": "GetCustomName", "context": "MeshVertexUVData", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetCount", + "base": "GetCount", "context": "MeshVertexUVData", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "GetUV", + "base": "GetUV", "context": "MeshVertexUVData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientComponent.names index f0aa39575a..d25ce96a86 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MixedGradientComponent", + "base": "MixedGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientConfig.names index c603845990..a9d42f497a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MixedGradientConfig", + "base": "MixedGradientConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNumLayers", + "base": "GetNumLayers", "context": "MixedGradientConfig", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "AddLayer", + "base": "AddLayer", "context": "MixedGradientConfig", "entry": { "name": "In", @@ -65,7 +65,7 @@ ] }, { - "key": "RemoveLayer", + "base": "RemoveLayer", "context": "MixedGradientConfig", "entry": { "name": "In", @@ -95,7 +95,7 @@ ] }, { - "key": "GetLayer", + "base": "GetLayer", "context": "MixedGradientConfig", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientLayer.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientLayer.names index b8588fa56c..e192fe2c63 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientLayer.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MixedGradientLayer.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MixedGradientLayer", + "base": "MixedGradientLayer", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ModelPreset.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ModelPreset.names index ca6c97b051..c69a75db5e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ModelPreset.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ModelPreset.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ModelPreset", + "base": "ModelPreset", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetdisplayName", + "base": "GetdisplayName", "details": { "name": "Get Display Name" }, @@ -31,7 +31,7 @@ ] }, { - "key": "SetdisplayName", + "base": "SetdisplayName", "details": { "name": "Set Display Name" }, @@ -51,7 +51,7 @@ ] }, { - "key": "GetmodelAsset", + "base": "GetmodelAsset", "details": { "name": "Get Model Asset" }, @@ -73,7 +73,7 @@ ] }, { - "key": "SetmodelAsset", + "base": "SetmodelAsset", "details": { "name": "Set Model Asset" }, @@ -93,7 +93,7 @@ ] }, { - "key": "GetpreviewImageAsset", + "base": "GetpreviewImageAsset", "details": { "name": "Get Preview Image Asset" }, @@ -115,7 +115,7 @@ ] }, { - "key": "SetpreviewImageAsset", + "base": "SetpreviewImageAsset", "details": { "name": "Set Preview Image Asset" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MotionEvent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MotionEvent.names index b75bf1286a..320f4e128f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MotionEvent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MotionEvent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MotionEvent", + "base": "MotionEvent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MultiplayerSystemComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MultiplayerSystemComponent.names index cfa35a377f..d7ed32a229 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MultiplayerSystemComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MultiplayerSystemComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MultiplayerSystemComponent", + "base": "MultiplayerSystemComponent", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetOnClientDisconnectedEvent", + "base": "GetOnClientDisconnectedEvent", "context": "MultiplayerSystemComponent", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Name.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Name.names index 1104d336a2..746c94bf6a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Name.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Name.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Name", + "base": "Name", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "Name", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "Set", + "base": "Set", "context": "Name", "entry": { "name": "In", @@ -71,7 +71,7 @@ ] }, { - "key": "IsEmpty", + "base": "IsEmpty", "context": "Name", "entry": { "name": "In", @@ -103,7 +103,7 @@ ] }, { - "key": "Equal", + "base": "Equal", "context": "Name", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetBindComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetBindComponent.names index 5fe51e3a68..0a5f5f8de8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetBindComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetBindComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "NetBindComponent", + "base": "NetBindComponent", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "IsNetEntityRoleAuthority", + "base": "IsNetEntityRoleAuthority", "context": "NetBindComponent", "entry": { "name": "In", @@ -43,7 +43,7 @@ ] }, { - "key": "IsNetEntityRoleAutonomous", + "base": "IsNetEntityRoleAutonomous", "context": "NetBindComponent", "entry": { "name": "In", @@ -76,7 +76,7 @@ ] }, { - "key": "IsNetEntityRoleClient", + "base": "IsNetEntityRoleClient", "context": "NetBindComponent", "entry": { "name": "In", @@ -109,7 +109,7 @@ ] }, { - "key": "IsNetEntityRoleServer", + "base": "IsNetEntityRoleServer", "context": "NetBindComponent", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetworkTestPlayerComponentNetworkInput.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetworkTestPlayerComponentNetworkInput.names index 0a6c5db61f..011315360d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetworkTestPlayerComponentNetworkInput.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetworkTestPlayerComponentNetworkInput.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "NetworkTestPlayerComponentNetworkInput", + "base": "NetworkTestPlayerComponentNetworkInput", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateFromValues", + "base": "CreateFromValues", "context": "NetworkTestPlayerComponentNetworkInput", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "FwdBack", + "base": "FwdBack", "details": { "name": "Get Forward Back" }, @@ -69,7 +69,7 @@ ] }, { - "key": "FwdBack", + "base": "FwdBack", "details": { "name": "Set Forward Back" }, @@ -89,7 +89,7 @@ ] }, { - "key": "LeftRight", + "base": "LeftRight", "details": { "name": "Get Left Right" }, @@ -111,7 +111,7 @@ ] }, { - "key": "LeftRight", + "base": "LeftRight", "details": { "name": "Set Left Right" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NodeIndex.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NodeIndex.names index 2cfbfb6ff8..12170c59ab 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NodeIndex.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NodeIndex.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "NodeIndex", + "base": "NodeIndex", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Equal", + "base": "Equal", "context": "NodeIndex", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "ToString", + "base": "ToString", "context": "NodeIndex", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "IsValid", + "base": "IsValid", "context": "NodeIndex", "entry": { "name": "In", @@ -111,7 +111,7 @@ ] }, { - "key": "Distance", + "base": "Distance", "context": "NodeIndex", "entry": { "name": "In", @@ -149,7 +149,7 @@ ] }, { - "key": "AsNumber", + "base": "AsNumber", "context": "NodeIndex", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/OutputDeviceTransformType.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/OutputDeviceTransformType.names index eefbac6a0b..7ceb39b27b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/OutputDeviceTransformType.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/OutputDeviceTransformType.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "OutputDeviceTransformType", + "base": "OutputDeviceTransformType", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PerlinGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PerlinGradientComponent.names index 6acda4e4e1..1f84509238 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PerlinGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PerlinGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PerlinGradientComponent", + "base": "PerlinGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PerlinGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PerlinGradientConfig.names index 3f36153bb8..970558cfd9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PerlinGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PerlinGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PerlinGradientConfig", + "base": "PerlinGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PhysicsScene.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PhysicsScene.names index 3c1ef2eaaa..07faa4053b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PhysicsScene.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PhysicsScene.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PhysicsScene", + "base": "PhysicsScene", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetOnGravityChangeEvent", + "base": "GetOnGravityChangeEvent", "context": "PhysicsScene", "entry": { "name": "In", @@ -40,7 +40,7 @@ ] }, { - "key": "QueryScene", + "base": "QueryScene", "context": "PhysicsScene", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PhysicsSystemInterface.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PhysicsSystemInterface.names index 84b24aa2b2..d1eb03798d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PhysicsSystemInterface.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PhysicsSystemInterface.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PhysicsSystemInterface", + "base": "PhysicsSystemInterface", "context": "BehaviorClass", "variant": "", "details": { @@ -10,18 +10,18 @@ }, "methods": [ { - "key": "GetOnPresimulateEvent", + "base": "GetOnPresimulateEvent", "context": "PhysicsSystemInterface", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get On Presimulate Event" + "tooltip": "When signaled, this will invoke Get On Pre Simulate Event" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get On Presimulate Event is invoked" + "tooltip": "Signaled after Get On Pre Simulate Event is invoked" }, "details": { - "name": "Get On Presimulate Event" + "name": "Get On Pre Simulate Event" }, "results": [ { @@ -33,18 +33,18 @@ ] }, { - "key": "GetOnPostsimulateEvent", + "base": "GetOnPostsimulateEvent", "context": "PhysicsSystemInterface", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get On Postsimulate Event" + "tooltip": "When signaled, this will invoke Get On Post Simulate Event" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get On Postsimulate Event is invoked" + "tooltip": "Signaled after Get On Post Simulate Event is invoked" }, "details": { - "name": "Get On Postsimulate Event" + "name": "Get On Post Simulate Event" }, "results": [ { @@ -56,7 +56,7 @@ ] }, { - "key": "GetSceneHandle", + "base": "GetSceneHandle", "context": "PhysicsSystemInterface", "entry": { "name": "In", @@ -73,7 +73,7 @@ { "typeid": "{B6F4D92A-061B-4CB3-AAB5-984B599A53AE}", "details": { - "name": "Interface" + "name": "System Interface" } }, { @@ -93,7 +93,7 @@ ] }, { - "key": "GetScene", + "base": "GetScene", "context": "PhysicsSystemInterface", "entry": { "name": "In", @@ -110,7 +110,7 @@ { "typeid": "{B6F4D92A-061B-4CB3-AAB5-984B599A53AE}", "details": { - "name": "Interface" + "name": "System Interface" } }, { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Platform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Platform.names index cc41ff44a3..c07b27df44 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Platform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Platform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Platform", + "base": "Platform", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetName", + "base": "GetName", "context": "Platform", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetMac", + "base": "GetMac", "details": { "name": "Get Mac" }, @@ -55,7 +55,7 @@ ] }, { - "key": "GetLinux", + "base": "GetLinux", "details": { "name": "Get Linux" }, @@ -69,7 +69,7 @@ ] }, { - "key": "GetiOS", + "base": "GetiOS", "details": { "name": "Get iOS" }, @@ -83,7 +83,7 @@ ] }, { - "key": "GetWindows64", + "base": "GetWindows64", "details": { "name": "Get Windows64" }, @@ -97,7 +97,7 @@ ] }, { - "key": "GetAndroid64", + "base": "GetAndroid64", "details": { "name": "Get Android64" }, @@ -111,7 +111,7 @@ ] }, { - "key": "GetCurrent", + "base": "GetCurrent", "details": { "name": "Get Current" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PolygonPrism.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PolygonPrism.names index 193f0e94c9..3b2cc44451 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PolygonPrism.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PolygonPrism.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PolygonPrism", + "base": "PolygonPrism", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "height", + "base": "height", "details": { "name": "Get Height" }, @@ -33,7 +33,7 @@ ] }, { - "key": "vertexContainer", + "base": "vertexContainer", "details": { "name": "Get Vertex Container" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PositionSplineQueryResult.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PositionSplineQueryResult.names index 6a778c30a2..478a499b8e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PositionSplineQueryResult.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PositionSplineQueryResult.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PositionSplineQueryResult", + "base": "PositionSplineQueryResult", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PosterizeGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PosterizeGradientComponent.names index 5768ce41f2..6c2372d99c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PosterizeGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PosterizeGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PosterizeGradientComponent", + "base": "PosterizeGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PosterizeGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PosterizeGradientConfig.names index bea4631714..03b82c4262 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PosterizeGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PosterizeGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PosterizeGradientConfig", + "base": "PosterizeGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PropertyTreeEditor.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PropertyTreeEditor.names index a4da66e5fd..8224b2617c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PropertyTreeEditor.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PropertyTreeEditor.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PropertyTreeEditor", + "base": "PropertyTreeEditor", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ResetContainer", + "base": "ResetContainer", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "CompareProperty", + "base": "CompareProperty", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -91,7 +91,7 @@ ] }, { - "key": "IsContainer", + "base": "IsContainer", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -129,7 +129,7 @@ ] }, { - "key": "GetContainerCount", + "base": "GetContainerCount", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -167,7 +167,7 @@ ] }, { - "key": "SetProperty", + "base": "SetProperty", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -211,7 +211,7 @@ ] }, { - "key": "AppendContainerItem", + "base": "AppendContainerItem", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -255,7 +255,7 @@ ] }, { - "key": "GetProperty", + "base": "GetProperty", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -293,7 +293,7 @@ ] }, { - "key": "AddContainerItem", + "base": "AddContainerItem", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -343,7 +343,7 @@ ] }, { - "key": "RemoveContainerItem", + "base": "RemoveContainerItem", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -387,7 +387,7 @@ ] }, { - "key": "BuildPathsListWithTypes", + "base": "BuildPathsListWithTypes", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -419,7 +419,7 @@ ] }, { - "key": "HasAttribute", + "base": "HasAttribute", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -463,7 +463,7 @@ ] }, { - "key": "BuildPathsList", + "base": "BuildPathsList", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -495,7 +495,7 @@ ] }, { - "key": "SetVisibleEnforcement", + "base": "SetVisibleEnforcement", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -525,7 +525,7 @@ ] }, { - "key": "UpdateContainerItem", + "base": "UpdateContainerItem", "context": "PropertyTreeEditor", "entry": { "name": "In", @@ -575,7 +575,7 @@ ] }, { - "key": "GetContainerItem", + "base": "GetContainerItem", "context": "PropertyTreeEditor", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PythonBehaviorInfo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PythonBehaviorInfo.names index 44d606200e..cbc3f91d4d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PythonBehaviorInfo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/PythonBehaviorInfo.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PythonBehaviorInfo", + "base": "PythonBehaviorInfo", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomGradientComponent.names index 39484e12ca..528f0f6ba1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RandomGradientComponent", + "base": "RandomGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomGradientConfig.names index 437018b5ee..16cde16465 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RandomGradientConfig", + "base": "RandomGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomTimedSpawnerComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomTimedSpawnerComponent.names index 580b4b9b73..7be82eb510 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomTimedSpawnerComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RandomTimedSpawnerComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RandomTimedSpawnerComponent", + "base": "RandomTimedSpawnerComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RaySplineQueryResult.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RaySplineQueryResult.names index d8bae42895..0c143f7bca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RaySplineQueryResult.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RaySplineQueryResult.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RaySplineQueryResult", + "base": "RaySplineQueryResult", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceGradientComponent.names index f8e307243e..f55bd9b2fc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ReferenceGradientComponent", + "base": "ReferenceGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceGradientConfig.names index f54a665d2d..75c14d2132 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ReferenceGradientConfig", + "base": "ReferenceGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceShapeConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceShapeConfig.names index ba88940ef2..c312519f02 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceShapeConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ReferenceShapeConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ReferenceShapeConfig", + "base": "ReferenceShapeConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "shapeEntityId", + "base": "shapeEntityId", "details": { "name": "ReferenceShapeConfig::shapeEntityId::Getter" }, @@ -32,7 +32,7 @@ ] }, { - "key": "shapeEntityId", + "base": "shapeEntityId", "details": { "name": "ReferenceShapeConfig::shapeEntityId::Setter" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RuntimeData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RuntimeData.names index d0b45d418a..9736c7e787 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RuntimeData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/RuntimeData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RuntimeData", + "base": "RuntimeData", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetRequiredAssets", + "base": "GetRequiredAssets", "context": "RuntimeData", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Scene.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Scene.names index 38c123e0cf..febcc224f1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Scene.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Scene.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Scene", + "base": "Scene", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetOriginalSceneOrientation", + "base": "GetOriginalSceneOrientation", "context": "Scene", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneGraphName.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneGraphName.names index f3bb103ae3..5c7fb58120 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneGraphName.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneGraphName.names @@ -1,33 +1,33 @@ { "entries": [ { - "key": "SceneGraphName", + "base": "SceneGraphName", "context": "BehaviorClass", "variant": "", "details": { - "name": "SceneGraphName" + "name": "Scene Graph Name", + "category": "Scene Graph" }, "methods": [ { - "key": "GetPath", + "base": "GetPath", "context": "SceneGraphName", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPath" + "tooltip": "When signaled, this will invoke Get Path" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPath is invoked" + "tooltip": "Signaled after Get Path is invoked" }, "details": { - "name": "SceneGraphName::GetPath", - "category": "Other" + "name": "Get Path" }, "params": [ { "typeid": "{4077AC3C-B301-4F5A-BEA7-54D6511AEC2E}", "details": { - "name": "AZ::SceneAPI::Containers::SceneGraph::Name*" + "name": "Scene Graph Name" } } ], @@ -35,31 +35,30 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "const char*" + "name": "Path" } } ] }, { - "key": "GetName", + "base": "GetName", "context": "SceneGraphName", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetName" + "tooltip": "When signaled, this will invoke Get Name" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetName is invoked" + "tooltip": "Signaled after Get Name is invoked" }, "details": { - "name": "SceneGraphName::GetName", - "category": "Other" + "name": "Get Name" }, "params": [ { "typeid": "{4077AC3C-B301-4F5A-BEA7-54D6511AEC2E}", "details": { - "name": "AZ::SceneAPI::Containers::SceneGraph::Name*" + "name": "Scene Graph Name" } } ], @@ -67,31 +66,30 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "const char*" + "name": "Name" } } ] }, { - "key": "ToString", + "base": "ToString", "context": "SceneGraphName", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ToString" + "tooltip": "When signaled, this will invoke To String" }, "exit": { "name": "Out", - "tooltip": "Signaled after ToString is invoked" + "tooltip": "Signaled after To String is invoked" }, "details": { - "name": "SceneGraphName::ToString", - "category": "Other" + "name": "To String" }, "params": [ { "typeid": "{4077AC3C-B301-4F5A-BEA7-54D6511AEC2E}", "details": { - "name": "const AZ::SceneAPI::Containers::SceneGraph::Name&" + "name": "Scene Graph Name" } } ], @@ -99,7 +97,7 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "const char*" + "name": "String" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneManifest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneManifest.names index ede7f6ea12..bc018a3011 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneManifest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneManifest.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SceneManifest", + "base": "SceneManifest", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ImportFromJson", + "base": "ImportFromJson", "context": "SceneManifest", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "ExportToJson", + "base": "ExportToJson", "context": "SceneManifest", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneQueries.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneQueries.names index 731a41bac1..1aa7a6642c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneQueries.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SceneQueries.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SceneQueries", + "base": "SceneQueries", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreateRayCastRequest", + "base": "CreateRayCastRequest", "context": "SceneQueries", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ScriptTimePoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ScriptTimePoint.names index b43f891c4c..c80e6d466b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ScriptTimePoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ScriptTimePoint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ScriptTimePoint", + "base": "ScriptTimePoint", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "ScriptTimePoint", "entry": { "name": "In", @@ -40,7 +40,7 @@ ] }, { - "key": "GetSeconds", + "base": "GetSeconds", "context": "ScriptTimePoint", "entry": { "name": "In", @@ -71,7 +71,7 @@ ] }, { - "key": "GetMilliseconds", + "base": "GetMilliseconds", "context": "ScriptTimePoint", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SearchFilter.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SearchFilter.names index 851aef1fda..693e465864 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SearchFilter.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SearchFilter.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SearchFilter", + "base": "SearchFilter", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SequenceComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SequenceComponent.names index 59c9be78f7..c330e85e85 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SequenceComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SequenceComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SequenceComponent", + "base": "SequenceComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SettingsRegistryInterface.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SettingsRegistryInterface.names index 8500946948..660fb5206f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SettingsRegistryInterface.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SettingsRegistryInterface.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SettingsRegistryInterface", + "base": "SettingsRegistryInterface", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetFloat", + "base": "GetFloat", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "SetFloat", + "base": "SetFloat", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -90,7 +90,7 @@ ] }, { - "key": "RemoveKey", + "base": "RemoveKey", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -127,7 +127,7 @@ ] }, { - "key": "SetInt", + "base": "SetInt", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -170,7 +170,7 @@ ] }, { - "key": "SetUInt", + "base": "SetUInt", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -213,7 +213,7 @@ ] }, { - "key": "GetBool", + "base": "GetBool", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -250,7 +250,7 @@ ] }, { - "key": "GetInt", + "base": "GetInt", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -287,7 +287,7 @@ ] }, { - "key": "GetUInt", + "base": "GetUInt", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -324,7 +324,7 @@ ] }, { - "key": "GetNotifyEvent", + "base": "GetNotifyEvent", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -355,7 +355,7 @@ ] }, { - "key": "MergeSettings", + "base": "MergeSettings", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -399,7 +399,7 @@ ] }, { - "key": "MergeSettingsFile", + "base": "MergeSettingsFile", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -449,7 +449,7 @@ ] }, { - "key": "GetString", + "base": "GetString", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -486,7 +486,7 @@ ] }, { - "key": "IsValid", + "base": "IsValid", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -517,7 +517,7 @@ ] }, { - "key": "MergeSettingsFolder", + "base": "MergeSettingsFolder", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -566,7 +566,7 @@ ] }, { - "key": "SetBool", + "base": "SetBool", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -609,7 +609,7 @@ ] }, { - "key": "SetString", + "base": "SetString", "context": "SettingsRegistryInterface", "entry": { "name": "In", @@ -652,7 +652,7 @@ ] }, { - "key": "DumpSettings", + "base": "DumpSettings", "context": "SettingsRegistryInterface", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderCollectionItem.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderCollectionItem.names index 94fe0bb982..0e081769b4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderCollectionItem.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderCollectionItem.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShaderCollectionItem", + "base": "ShaderCollectionItem", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetShaderAsset", + "base": "GetShaderAsset", "context": "ShaderCollectionItem", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetShaderAssetId", + "base": "GetShaderAssetId", "context": "ShaderCollectionItem", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "GetShaderVariantId", + "base": "GetShaderVariantId", "context": "ShaderCollectionItem", "entry": { "name": "In", @@ -105,7 +105,7 @@ ] }, { - "key": "GetShaderOptionGroup", + "base": "GetShaderOptionGroup", "context": "ShaderCollectionItem", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderOptionGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderOptionGroup.names index 59c02d8c6d..24c1085b7d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderOptionGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderOptionGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShaderOptionGroup", + "base": "ShaderOptionGroup", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetValueByOptionName", + "base": "GetValueByOptionName", "context": "ShaderOptionGroup", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "GetShaderOptionDescriptors", + "base": "GetShaderOptionDescriptors", "context": "ShaderOptionGroup", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "GetShaderVariantId", + "base": "GetShaderVariantId", "context": "ShaderOptionGroup", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderSemantic.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderSemantic.names index 011619c1e3..372a9a7e79 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderSemantic.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderSemantic.names @@ -1,41 +1,117 @@ { "entries": [ { - "key": "ShaderSemantic", + "base": "ShaderSemantic", "context": "BehaviorClass", "variant": "", "details": { - "name": "ShaderSemantic" + "name": "Shader Semantic", + "category": "Rendering" }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "ShaderSemantic", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ToString" + "tooltip": "When signaled, this will invoke To String" }, "exit": { "name": "Out", - "tooltip": "Signaled after ToString is invoked" + "tooltip": "Signaled after To String is invoked" }, "details": { - "name": "ShaderSemantic::ToString", - "category": "Other" + "name": "To String" + }, + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AZ Std::basic_string, allocator>" + } + } + ] + }, + { + "base": "Getname", + "details": { + "name": "Getname" }, "params": [ { "typeid": "{C6FFF25F-FE52-4D08-8D96-D04C14048816}", "details": { - "name": "ShaderSemantic*" + "name": "" } } ], "results": [ { - "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "typeid": "{3D2B920C-9EFD-40D5-AAE0-DF131C3D4931}", "details": { - "name": "AZStd::basic_string, allocator>" + "name": "" + } + } + ] + }, + { + "base": "Setname", + "details": { + "name": "Setname" + }, + "params": [ + { + "typeid": "{C6FFF25F-FE52-4D08-8D96-D04C14048816}", + "details": { + "name": "" + } + }, + { + "typeid": "{3D2B920C-9EFD-40D5-AAE0-DF131C3D4931}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "Getindex", + "details": { + "name": "Getindex" + }, + "params": [ + { + "typeid": "{C6FFF25F-FE52-4D08-8D96-D04C14048816}", + "details": { + "name": "" + } + } + ], + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "" + } + } + ] + }, + { + "base": "Setindex", + "details": { + "name": "Setindex" + }, + "params": [ + { + "typeid": "{C6FFF25F-FE52-4D08-8D96-D04C14048816}", + "details": { + "name": "" + } + }, + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantId.names index c6aa37ec83..b56def1788 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantId.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShaderVariantId", + "base": "ShaderVariantId", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Equal", + "base": "Equal", "context": "ShaderVariantId", "entry": { "name": "In", @@ -47,7 +47,7 @@ ] }, { - "key": "IsEmpty", + "base": "IsEmpty", "context": "ShaderVariantId", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantInfo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantInfo.names index 215b56ccee..3f503edf3c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantInfo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantInfo.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShaderVariantInfo", + "base": "ShaderVariantInfo", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantListSourceData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantListSourceData.names index d8ff471af0..42dc75b474 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantListSourceData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShaderVariantListSourceData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShaderVariantListSourceData", + "base": "ShaderVariantListSourceData", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShapeAreaFalloffGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShapeAreaFalloffGradientComponent.names index 1935304451..728a4412b5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShapeAreaFalloffGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShapeAreaFalloffGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeAreaFalloffGradientComponent", + "base": "ShapeAreaFalloffGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShapeAreaFalloffGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShapeAreaFalloffGradientConfig.names index 03da764cf9..32fd92f533 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShapeAreaFalloffGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ShapeAreaFalloffGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeAreaFalloffGradientConfig", + "base": "ShapeAreaFalloffGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimpleAssetReferenceBase.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimpleAssetReferenceBase.names index 67c99ad82e..083e61fc8a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimpleAssetReferenceBase.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimpleAssetReferenceBase.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SimpleAssetReferenceBase", + "base": "SimpleAssetReferenceBase", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetAssetPath", + "base": "SetAssetPath", "context": "SimpleAssetReferenceBase", "entry": { "name": "In", @@ -39,7 +39,7 @@ ] }, { - "key": "assetPath", + "base": "assetPath", "details": { "name": "Get Asset Path" }, @@ -62,7 +62,7 @@ ] }, { - "key": "assetType", + "base": "assetType", "details": { "name": "Get Asset Type" }, @@ -85,7 +85,7 @@ ] }, { - "key": "fileFilter", + "base": "fileFilter", "details": { "name": "Get File Filter" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimpleMotionComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimpleMotionComponent.names index 9867741842..cac9c16821 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimpleMotionComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimpleMotionComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SimpleMotionComponent", + "base": "SimpleMotionComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimulatedBody.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimulatedBody.names index ec697bbb71..05f66ca154 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimulatedBody.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SimulatedBody.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SimulatedBody", + "base": "SimulatedBody", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetOnCollisionEndEvent", + "base": "GetOnCollisionEndEvent", "context": "SimulatedBody", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetOnCollisionPersistEvent", + "base": "GetOnCollisionPersistEvent", "context": "SimulatedBody", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "GetOnTriggerEnterEvent", + "base": "GetOnTriggerEnterEvent", "context": "SimulatedBody", "entry": { "name": "In", @@ -105,7 +105,7 @@ ] }, { - "key": "GetOnCollisionBeginEvent", + "base": "GetOnCollisionBeginEvent", "context": "SimulatedBody", "entry": { "name": "In", @@ -137,7 +137,7 @@ ] }, { - "key": "GetOnTriggerExitEvent", + "base": "GetOnTriggerExitEvent", "context": "SimulatedBody", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SliceInstanceAddress.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SliceInstanceAddress.names index 003b833a1d..3aa69fd61a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SliceInstanceAddress.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SliceInstanceAddress.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SliceInstanceAddress", + "base": "SliceInstanceAddress", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "IsValid", + "base": "IsValid", "context": "SliceInstanceAddress", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SliceInstantiationTicket.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SliceInstantiationTicket.names index b9edb1cfa1..325c544763 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SliceInstantiationTicket.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SliceInstantiationTicket.names @@ -1,16 +1,15 @@ { "entries": [ { - "key": "SliceInstantiationTicket", + "base": "SliceInstantiationTicket", "context": "BehaviorClass", "variant": "", "details": { - "name": "Slice Instantiation Ticket", - "category": "Gameplay" + "name": "Slice Instantiation Ticket" }, "methods": [ { - "key": "Equal", + "base": "Equal", "context": "SliceInstantiationTicket", "entry": { "name": "In", @@ -21,20 +20,19 @@ "tooltip": "Signaled after Equal is invoked" }, "details": { - "name": "SliceInstantiationTicket::Equal", - "category": "Gameplay" + "name": "Equal" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket*" + "name": "Slice Instantiation Ticket*" } }, { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "const SliceInstantiationTicket&" + "name": "const Slice Instantiation Ticket&" } } ], @@ -42,31 +40,30 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "Boolean" + "name": "Equal" } } ] }, { - "key": "ToString", + "base": "ToString", "context": "SliceInstantiationTicket", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ToString" + "tooltip": "When signaled, this will invoke To String" }, "exit": { "name": "Out", - "tooltip": "Signaled after ToString is invoked" + "tooltip": "Signaled after To String is invoked" }, "details": { - "name": "SliceInstantiationTicket::ToString", - "category": "Gameplay" + "name": "To String" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket*" + "name": "Slice Instantiation Ticket*" } } ], @@ -74,31 +71,30 @@ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::basic_string, allocator>" + "name": "String" } } ] }, { - "key": "IsValid", + "base": "IsValid", "context": "SliceInstantiationTicket", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsValid" + "tooltip": "When signaled, this will invoke Is Valid" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsValid is invoked" + "tooltip": "Signaled after Is Valid is invoked" }, "details": { - "name": "SliceInstantiationTicket::IsValid", - "category": "Gameplay" + "name": "Is Valid" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket*" + "name": "Slice Instantiation Ticket*" } } ], @@ -106,7 +102,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "Boolean" + "name": "Is Valid" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStep.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStep.names index 2fff9e6f59..a95cd5d878 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStep.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStep.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SmoothStep", + "base": "SmoothStep", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStepGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStepGradientComponent.names index 42374f5c08..63bbb21361 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStepGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStepGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SmoothStepGradientComponent", + "base": "SmoothStepGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStepGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStepGradientConfig.names index d9d27df79b..29331f4a45 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStepGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SmoothStepGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SmoothStepGradientConfig", + "base": "SmoothStepGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SpawnerConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SpawnerConfig.names index f78e690f18..fafcb74e0b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SpawnerConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SpawnerConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SpawnerConfig", + "base": "SpawnerConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Specializations.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Specializations.names index a9f36b42d3..6e7070b006 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Specializations.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Specializations.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Specializations", + "base": "Specializations", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetPriority", + "base": "GetPriority", "context": "Specializations", "entry": { "name": "In", @@ -48,7 +48,7 @@ ] }, { - "key": "GetCount", + "base": "GetCount", "context": "Specializations", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "Contains", + "base": "Contains", "context": "Specializations", "entry": { "name": "In", @@ -116,7 +116,7 @@ ] }, { - "key": "Append", + "base": "Append", "context": "Specializations", "entry": { "name": "In", @@ -153,7 +153,7 @@ ] }, { - "key": "GetSpecialization", + "base": "GetSpecialization", "context": "Specializations", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SphereShapeConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SphereShapeConfig.names index be4d2dbdb2..889b0dbe55 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SphereShapeConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SphereShapeConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SphereShapeConfig", + "base": "SphereShapeConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/String.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/String.names index 3bee4fbec1..b8d70936e4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/String.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/String.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "String", + "base": "String", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ReplaceString", + "base": "ReplaceString", "context": "String", "entry": { "name": "In", @@ -59,7 +59,7 @@ ] }, { - "key": "Join", + "base": "Join", "context": "String", "entry": { "name": "In", @@ -97,7 +97,7 @@ ] }, { - "key": "StartsWith", + "base": "StartsWith", "context": "String", "entry": { "name": "In", @@ -141,7 +141,7 @@ ] }, { - "key": "ContainsString", + "base": "ContainsString", "context": "String", "entry": { "name": "In", @@ -191,7 +191,7 @@ ] }, { - "key": "Split", + "base": "Split", "context": "String", "entry": { "name": "In", @@ -229,7 +229,7 @@ ] }, { - "key": "IsValidFindPosition", + "base": "IsValidFindPosition", "context": "String", "entry": { "name": "In", @@ -261,7 +261,7 @@ ] }, { - "key": "EndsWith", + "base": "EndsWith", "context": "String", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/String_VM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/String_VM.names index 38a203d02f..86a0f9e3c0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/String_VM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/String_VM.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "String_VM", + "base": "String_VM", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ToLower", + "base": "ToLower", "context": "String_VM", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "ToUpper", + "base": "ToUpper", "context": "String_VM", "entry": { "name": "In", @@ -73,7 +73,7 @@ ] }, { - "key": "Substring", + "base": "Substring", "context": "String_VM", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceAltitudeGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceAltitudeGradientComponent.names index c42e70fd88..6d5e6004b3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceAltitudeGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceAltitudeGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceAltitudeGradientComponent", + "base": "SurfaceAltitudeGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceAltitudeGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceAltitudeGradientConfig.names index 2886505974..55f73fe1a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceAltitudeGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceAltitudeGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceAltitudeGradientConfig", + "base": "SurfaceAltitudeGradientConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNumTags", + "base": "GetNumTags", "context": "SurfaceAltitudeGradientConfig", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "GetTag", + "base": "GetTag", "context": "SurfaceAltitudeGradientConfig", "entry": { "name": "In", @@ -81,7 +81,7 @@ ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "context": "SurfaceAltitudeGradientConfig", "entry": { "name": "In", @@ -112,7 +112,7 @@ ] }, { - "key": "AddTag", + "base": "AddTag", "context": "SurfaceAltitudeGradientConfig", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceMaskGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceMaskGradientComponent.names index e82633638e..d3c50d9034 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceMaskGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceMaskGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceMaskGradientComponent", + "base": "SurfaceMaskGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceMaskGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceMaskGradientConfig.names index 126e5cb118..4bf5c687ec 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceMaskGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceMaskGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceMaskGradientConfig", + "base": "SurfaceMaskGradientConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNumTags", + "base": "GetNumTags", "context": "SurfaceMaskGradientConfig", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetTag", + "base": "GetTag", "context": "SurfaceMaskGradientConfig", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "context": "SurfaceMaskGradientConfig", "entry": { "name": "In", @@ -109,7 +109,7 @@ ] }, { - "key": "AddTag", + "base": "AddTag", "context": "SurfaceMaskGradientConfig", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceSlopeGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceSlopeGradientComponent.names index 94dbbf61a6..dad8d7b765 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceSlopeGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceSlopeGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceSlopeGradientComponent", + "base": "SurfaceSlopeGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceSlopeGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceSlopeGradientConfig.names index c57eb21d4b..4a9e8e25dd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceSlopeGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceSlopeGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceSlopeGradientConfig", + "base": "SurfaceSlopeGradientConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNumTags", + "base": "GetNumTags", "context": "SurfaceSlopeGradientConfig", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "GetTag", + "base": "GetTag", "context": "SurfaceSlopeGradientConfig", "entry": { "name": "In", @@ -79,7 +79,7 @@ ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "context": "SurfaceSlopeGradientConfig", "entry": { "name": "In", @@ -109,7 +109,7 @@ ] }, { - "key": "AddTag", + "base": "AddTag", "context": "SurfaceSlopeGradientConfig", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceTagWeight.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceTagWeight.names index 0c1b3b7e1d..52c8078238 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceTagWeight.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/SurfaceTagWeight.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceTagWeight", + "base": "SurfaceTagWeight", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetsurfaceType", + "base": "GetsurfaceType", "details": { "name": "Get Surface Type" }, @@ -32,7 +32,7 @@ ] }, { - "key": "SetsurfaceType", + "base": "SetsurfaceType", "details": { "name": "Set Surface Type" }, @@ -52,7 +52,7 @@ ] }, { - "key": "Getweight", + "base": "Getweight", "details": { "name": "Get Weight" }, @@ -74,7 +74,7 @@ ] }, { - "key": "Setweight", + "base": "Setweight", "details": { "name": "Set Weight" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Tag Helper.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Tag Helper.names index 32e587c80f..65996b7b3b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Tag Helper.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Tag Helper.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Tag Helper", + "base": "Tag Helper", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetEntitiesbyTag", + "base": "GetEntitiesbyTag", "context": "Tag Helper", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TestTupleMethods.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TestTupleMethods.names index dd5a04064c..03702818ca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TestTupleMethods.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TestTupleMethods.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TestTupleMethods", + "base": "TestTupleMethods", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Three", + "base": "Three", "context": "TestTupleMethods", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ThresholdGradientComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ThresholdGradientComponent.names index ea113281c7..1418df947e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ThresholdGradientComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ThresholdGradientComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ThresholdGradientComponent", + "base": "ThresholdGradientComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ThresholdGradientConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ThresholdGradientConfig.names index 9fc1ac28ca..4ca077834f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ThresholdGradientConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ThresholdGradientConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ThresholdGradientConfig", + "base": "ThresholdGradientConfig", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TickOrder.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TickOrder.names index db75d9c39b..a6716ab37e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TickOrder.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TickOrder.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TickOrder", + "base": "TickOrder", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TransformComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TransformComponent.names index 5c7d439587..ebf6400d43 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TransformComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TransformComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TransformComponent", + "base": "TransformComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TransformConfig.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TransformConfig.names index d9acd8a6cc..3c5ade5a55 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TransformConfig.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TransformConfig.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TransformConfig", + "base": "TransformConfig", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetTransform", + "base": "SetTransform", "context": "TransformConfig", "entry": { "name": "In", @@ -39,7 +39,7 @@ ] }, { - "key": "SetLocalAndWorldTransform", + "base": "SetLocalAndWorldTransform", "context": "TransformConfig", "entry": { "name": "In", @@ -74,7 +74,7 @@ ] }, { - "key": "GetparentActivationTransformMode", + "base": "GetparentActivationTransformMode", "details": { "name": "Get Parent Activation Transform Mode" }, @@ -97,7 +97,7 @@ ] }, { - "key": "SetparentActivationTransformMode", + "base": "SetparentActivationTransformMode", "details": { "name": "Set Parent Activation Transform Mode" }, @@ -118,7 +118,7 @@ ] }, { - "key": "GetparentId", + "base": "GetparentId", "details": { "name": "Get Parent Id" }, @@ -141,7 +141,7 @@ ] }, { - "key": "SetparentId", + "base": "SetparentId", "details": { "name": "Set Parent Id" }, @@ -162,7 +162,7 @@ ] }, { - "key": "GetworldTransform", + "base": "GetworldTransform", "details": { "name": "Get World Transform" }, @@ -184,7 +184,7 @@ ] }, { - "key": "SetworldTransform", + "base": "SetworldTransform", "details": { "name": "Set World Transform" }, @@ -204,7 +204,7 @@ ] }, { - "key": "GetMaintainCurrentWorldTransform", + "base": "GetMaintainCurrentWorldTransform", "details": { "name": "Get Maintain Current World Transform" }, @@ -218,7 +218,7 @@ ] }, { - "key": "GetisStatic", + "base": "GetisStatic", "details": { "name": "Get Is Static" }, @@ -240,7 +240,7 @@ ] }, { - "key": "SetisStatic", + "base": "SetisStatic", "details": { "name": "Set Is Static" }, @@ -260,7 +260,7 @@ ] }, { - "key": "GetMaintainOriginalRelativeTransform", + "base": "GetMaintainOriginalRelativeTransform", "details": { "name": "Get Maintain Original Relative Transform" }, @@ -274,7 +274,7 @@ ] }, { - "key": "GetlocalTransform", + "base": "GetlocalTransform", "details": { "name": "Get Local Transform" }, @@ -296,7 +296,7 @@ ] }, { - "key": "SetlocalTransform", + "base": "SetlocalTransform", "details": { "name": "Set Local Transform" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TriggerEvent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TriggerEvent.names index a0da73d31c..7dd601aab9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TriggerEvent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TriggerEvent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TriggerEvent", + "base": "TriggerEvent", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetTriggerEntityId", + "base": "GetTriggerEntityId", "context": "TriggerEvent", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "GetOtherEntityId", + "base": "GetOtherEntityId", "context": "TriggerEvent", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TypeExposition.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TypeExposition.names index 4157b33300..5cb7fe9b2d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TypeExposition.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/TypeExposition.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TypeExposition", + "base": "TypeExposition", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Reflect_AZStd__array_AZ__Vector3_2", + "base": "Reflect_AZStd__array_AZ__Vector3_2", "context": "TypeExposition", "entry": { "name": "In", @@ -41,7 +41,7 @@ ] }, { - "key": "Reflect_AZ__Outcome_AZ__Vector3_void", + "base": "Reflect_AZ__Outcome_AZ__Vector3_void", "context": "TypeExposition", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UVCoords.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UVCoords.names index 57abfbff4b..ecbd6b8618 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UVCoords.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UVCoords.names @@ -1,191 +1,341 @@ { "entries": [ { - "key": "UVCoords", + "base": "UVCoords", "context": "BehaviorClass", "variant": "", "details": { "name": "UV Coords", - "category": "UI/LyShine Examples" + "category": "UI/UI Examples" }, "methods": [ { - "key": "SetUVCoords", + "base": "SetUVCoords", "context": "UVCoords", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetUVCoords" + "tooltip": "When signaled, this will invoke SetUV Coords" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetUVCoords is invoked" + "tooltip": "Signaled after SetUV Coords is invoked" }, "details": { - "name": "UVCoords::SetUVCoords", - "category": "UI/LyShine Examples" + "name": "Set UV Coords" }, "params": [ { "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", "details": { - "name": "UV Coords", - "tooltip": "The UV coordinates to set" + "name": "UV Rect" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Left", - "tooltip": "The lower X UV coordinate [0-1]" + "name": "Left" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Top", - "tooltip": "The higher Y UV coordinate [0-1]" + "name": "Top" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Right", - "tooltip": "The higher X UV coordinate [0-1]" + "name": "Right" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Bottom", - "tooltip": "The lower Y UV coordinate [0-1]" + "name": "Bottom" } } ] }, { - "key": "SetBottom", + "base": "SetBottom", "context": "UVCoords", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetBottom" + "tooltip": "When signaled, this will invoke Set Bottom" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetBottom is invoked" + "tooltip": "Signaled after Set Bottom is invoked" }, "details": { - "name": "UVCoords::SetBottom", - "category": "UI/LyShine Examples" + "name": "Set Bottom" }, "params": [ { "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", "details": { - "name": "UV Coords", - "tooltip": "The UV coordinates to set" + "name": "UV Rect" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Bottom", - "tooltip": "The lower Y UV coordinate [0-1]" + "name": "Bottom" } } ] }, { - "key": "SetRight", + "base": "SetRight", "context": "UVCoords", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetRight" + "tooltip": "When signaled, this will invoke Set Right" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetRight is invoked" + "tooltip": "Signaled after Set Right is invoked" }, "details": { - "name": "UVCoords::SetRight", - "category": "UI/LyShine Examples" + "name": "Set Right" }, "params": [ { "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", "details": { - "name": "UV Coords", - "tooltip": "The UV coordinates to set" + "name": "UV Rect" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Right", - "tooltip": "The higher X UV coordinate [0-1]" + "name": "Right" } } ] }, { - "key": "SetTop", + "base": "SetTop", "context": "UVCoords", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTop" + "tooltip": "When signaled, this will invoke Set Top" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTop is invoked" + "tooltip": "Signaled after Set Top is invoked" }, "details": { - "name": "UVCoords::SetTop", - "category": "UI/LyShine Examples" + "name": "Set Top" }, "params": [ { "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", "details": { - "name": "UV Coords", - "tooltip": "The UV coordinates to set" + "name": "UV Rect" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Top", - "tooltip": "The higher Y UV coordinate [0-1]" + "name": "Top" } } ] }, { - "key": "SetLeft", + "base": "SetLeft", "context": "UVCoords", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetLeft" + "tooltip": "When signaled, this will invoke Set Left" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetLeft is invoked" + "tooltip": "Signaled after Set Left is invoked" }, "details": { - "name": "UVCoords::SetLeft", - "category": "UI/LyShine Examples" + "name": "Set Left" }, "params": [ { "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", "details": { - "name": "UV Coords", - "tooltip": "The UV coordinates to set" + "name": "UV Rect" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Left", - "tooltip": "Sets the lower X UV coordinate [0-1]" + "name": "Left" + } + } + ] + }, + { + "base": "Getleft", + "details": { + "name": "Left" + }, + "params": [ + { + "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", + "details": { + "name": "UV Rect" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Left" + } + } + ] + }, + { + "base": "Setleft", + "details": { + "name": "Set Left" + }, + "params": [ + { + "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", + "details": { + "name": "UV Rect" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Left" + } + } + ] + }, + { + "base": "Gettop", + "details": { + "name": "Top" + }, + "params": [ + { + "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", + "details": { + "name": "UV Rect" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Top" + } + } + ] + }, + { + "base": "Settop", + "details": { + "name": "Set Top" + }, + "params": [ + { + "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", + "details": { + "name": "UV Rect" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Top" + } + } + ] + }, + { + "base": "Getright", + "details": { + "name": "Get Right" + }, + "params": [ + { + "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", + "details": { + "name": "UV Rect" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Right" + } + } + ] + }, + { + "base": "Setright", + "details": { + "name": "Set Right" + }, + "params": [ + { + "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", + "details": { + "name": "UV Rect" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Right" + } + } + ] + }, + { + "base": "Getbottom", + "details": { + "name": "Get Bottom" + }, + "params": [ + { + "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", + "details": { + "name": "UV Rect" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Bottom" + } + } + ] + }, + { + "base": "Setbottom", + "details": { + "name": "Bottom" + }, + "params": [ + { + "typeid": "{E134EAE8-52A1-4E43-847B-09E546CC5B95}", + "details": { + "name": "UV Rect" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Bottom" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiAnchors.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiAnchors.names index 9adfa70b6e..6f0f08fdb0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiAnchors.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiAnchors.names @@ -1,33 +1,32 @@ { "entries": [ { - "key": "UiAnchors", + "base": "UiAnchors", "context": "BehaviorClass", "variant": "", "details": { - "name": "UiAnchors" + "name": "Ui Anchors" }, "methods": [ { - "key": "SetBottom", + "base": "SetBottom", "context": "UiAnchors", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetBottom" + "tooltip": "When signaled, this will invoke Set Bottom" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetBottom is invoked" + "tooltip": "Signaled after Set Bottom is invoked" }, "details": { - "name": "UiAnchors::SetBottom", - "category": "Other" + "name": "Set Bottom" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "Anchors" } }, { @@ -39,25 +38,24 @@ ] }, { - "key": "SetRight", + "base": "SetRight", "context": "UiAnchors", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetRight" + "tooltip": "When signaled, this will invoke Set Right" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetRight is invoked" + "tooltip": "Signaled after Set Right is invoked" }, "details": { - "name": "UiAnchors::SetRight", - "category": "Other" + "name": "Set Right" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "Anchors" } }, { @@ -69,25 +67,24 @@ ] }, { - "key": "SetTop", + "base": "SetTop", "context": "UiAnchors", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTop" + "tooltip": "When signaled, this will invoke Set Top" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTop is invoked" + "tooltip": "Signaled after Set Top is invoked" }, "details": { - "name": "UiAnchors::SetTop", - "category": "Other" + "name": "Set Top" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "Anchors" } }, { @@ -99,25 +96,24 @@ ] }, { - "key": "SetLeft", + "base": "SetLeft", "context": "UiAnchors", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetLeft" + "tooltip": "When signaled, this will invoke Set Left" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetLeft is invoked" + "tooltip": "Signaled after Set Left is invoked" }, "details": { - "name": "UiAnchors::SetLeft", - "category": "Other" + "name": "Set Left" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "Anchors" } }, { @@ -129,25 +125,24 @@ ] }, { - "key": "SetAnchors", + "base": "SetAnchors", "context": "UiAnchors", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAnchors" + "tooltip": "When signaled, this will invoke Set Anchors" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAnchors is invoked" + "tooltip": "Signaled after Set Anchors is invoked" }, "details": { - "name": "UiAnchors::SetAnchors", - "category": "Other" + "name": "Set Anchors" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "Anchors" } }, { @@ -177,15 +172,15 @@ ] }, { - "key": "left", + "base": "Getleft", "details": { - "name": "UiAnchors::left::Getter" + "name": "Getleft" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "" } } ], @@ -193,41 +188,41 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float&" + "name": "" } } ] }, { - "key": "left", + "base": "Setleft", "details": { - "name": "UiAnchors::left::Setter" + "name": "Setleft" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "const float&" + "name": "" } } ] }, { - "key": "top", + "base": "Gettop", "details": { - "name": "UiAnchors::top::Getter" + "name": "Gettop" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "" } } ], @@ -235,41 +230,41 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float&" + "name": "" } } ] }, { - "key": "top", + "base": "Settop", "details": { - "name": "UiAnchors::top::Setter" + "name": "Settop" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "const float&" + "name": "" } } ] }, { - "key": "right", + "base": "Getright", "details": { - "name": "UiAnchors::right::Getter" + "name": "Getright" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "" } } ], @@ -277,41 +272,41 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float&" + "name": "" } } ] }, { - "key": "right", + "base": "Setright", "details": { - "name": "UiAnchors::right::Setter" + "name": "Setright" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "const float&" + "name": "" } } ] }, { - "key": "bottom", + "base": "Getbottom", "details": { - "name": "UiAnchors::bottom::Getter" + "name": "Getbottom" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "" } } ], @@ -319,27 +314,27 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float&" + "name": "" } } ] }, { - "key": "bottom", + "base": "Setbottom", "details": { - "name": "UiAnchors::bottom::Setter" + "name": "Setbottom" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors*" + "name": "" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "const float&" + "name": "" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiFaderComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiFaderComponent.names index 6266f8234c..7f7fcd9478 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiFaderComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiFaderComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiFaderComponent", + "base": "UiFaderComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiImageComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiImageComponent.names index 66935473be..42ce5b7de3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiImageComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiImageComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiImageComponent", + "base": "UiImageComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiImageSequenceComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiImageSequenceComponent.names index e0f2292b8d..86c01c7510 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiImageSequenceComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiImageSequenceComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiImageSequenceComponent", + "base": "UiImageSequenceComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutCellComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutCellComponent.names index 123be9bca5..d7f8882110 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutCellComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutCellComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutCellComponent", + "base": "UiLayoutCellComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutColumnComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutColumnComponent.names index 7962c9e48b..bc37e12574 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutColumnComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutColumnComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutColumnComponent", + "base": "UiLayoutColumnComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutRowComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutRowComponent.names index 7617b10f9c..7f576d62e9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutRowComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiLayoutRowComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutRowComponent", + "base": "UiLayoutRowComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiOffsets.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiOffsets.names index dcf4704ca1..6b7aa8422a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiOffsets.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiOffsets.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiOffsets", + "base": "UiOffsets", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetBottom", + "base": "SetBottom", "context": "UiOffsets", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "SetRight", + "base": "SetRight", "context": "UiOffsets", "entry": { "name": "In", @@ -74,7 +74,7 @@ ] }, { - "key": "SetOffsets", + "base": "SetOffsets", "context": "UiOffsets", "entry": { "name": "In", @@ -127,7 +127,7 @@ ] }, { - "key": "SetTop", + "base": "SetTop", "context": "UiOffsets", "entry": { "name": "In", @@ -159,7 +159,7 @@ ] }, { - "key": "SetLeft", + "base": "SetLeft", "context": "UiOffsets", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiPadding.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiPadding.names index 296735cd1d..5b1e4d4f93 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiPadding.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiPadding.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiPadding", + "base": "UiPadding", "context": "BehaviorClass", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetPadding", + "base": "SetPadding", "context": "UiPadding", "entry": { "name": "In", @@ -63,7 +63,7 @@ ] }, { - "key": "SetBottom", + "base": "SetBottom", "context": "UiPadding", "entry": { "name": "In", @@ -95,7 +95,7 @@ ] }, { - "key": "SetRight", + "base": "SetRight", "context": "UiPadding", "entry": { "name": "In", @@ -127,7 +127,7 @@ ] }, { - "key": "SetTop", + "base": "SetTop", "context": "UiPadding", "entry": { "name": "In", @@ -159,7 +159,7 @@ ] }, { - "key": "SetLeft", + "base": "SetLeft", "context": "UiPadding", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiParticleEmitterComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiParticleEmitterComponent.names index ba5463b7a0..8218d063fb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiParticleEmitterComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiParticleEmitterComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiParticleEmitterComponent", + "base": "UiParticleEmitterComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiScrollBarComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiScrollBarComponent.names index 81a27fcdf1..13a890a74e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiScrollBarComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiScrollBarComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiScrollBarComponent", + "base": "UiScrollBarComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiSliderComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiSliderComponent.names index 269ae95c1c..52a5928940 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiSliderComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiSliderComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiSliderComponent", + "base": "UiSliderComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTextComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTextComponent.names index ffed23d747..e611e3bc50 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTextComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTextComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTextComponent", + "base": "UiTextComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTextInputComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTextInputComponent.names index ca2bd78b61..872ee6c4b0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTextInputComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTextInputComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTextInputComponent", + "base": "UiTextInputComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTooltipDisplayComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTooltipDisplayComponent.names index b39c29cf97..436f9265b7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTooltipDisplayComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTooltipDisplayComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTooltipDisplayComponent", + "base": "UiTooltipDisplayComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTransform2dComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTransform2dComponent.names index 4f0a04958a..dd8b4126c6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTransform2dComponent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiTransform2dComponent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTransform2dComponent", + "base": "UiTransform2dComponent", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Unit Testing.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Unit Testing.names index c5eefda46c..7dcec69b68 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Unit Testing.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Unit Testing.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Unit Testing", + "base": "Unit Testing", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ExpectLessThanEqual", + "base": "ExpectLessThanEqual", "context": "Unit Testing", "entry": { "name": "In", @@ -20,39 +20,39 @@ "tooltip": "Signaled after ExpectLessThanEqual is invoked" }, "details": { - "name": "Unit Testing::Expect Less Than Equal", + "name": "Expect Less Than Equal", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "double" + "name": "Candidate" } }, { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "double" + "name": "Reference" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "ExpectGreaterThanEqual", + "base": "ExpectGreaterThanEqual", "context": "Unit Testing", "entry": { "name": "In", @@ -70,32 +70,32 @@ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "double" + "name": "Candidate" } }, { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "double" + "name": "Reference" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "MarkComplete", + "base": "MarkComplete", "context": "Unit Testing", "entry": { "name": "In", @@ -106,27 +106,27 @@ "tooltip": "Signaled after MarkComplete is invoked" }, "details": { - "name": "Unit Testing::Mark Complete", + "name": "Mark Complete", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "ExpectTrue", + "base": "ExpectTrue", "context": "Unit Testing", "entry": { "name": "In", @@ -137,33 +137,33 @@ "tooltip": "Signaled after ExpectTrue is invoked" }, "details": { - "name": "Unit Testing::Expect True", + "name": "Expect True", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Candidate" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "Checkpoint", + "base": "Checkpoint", "context": "Unit Testing", "entry": { "name": "In", @@ -174,27 +174,27 @@ "tooltip": "Signaled after Checkpoint is invoked" }, "details": { - "name": "Unit Testing::Checkpoint", + "name": "Checkpoint", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "ExpectFalse", + "base": "ExpectFalse", "context": "Unit Testing", "entry": { "name": "In", @@ -205,33 +205,33 @@ "tooltip": "Signaled after ExpectFalse is invoked" }, "details": { - "name": "Unit Testing::Expect False", + "name": "Expect False", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Candidate" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "ExpectEqual", + "base": "ExpectEqual", "context": "Unit Testing", "entry": { "name": "In", @@ -242,39 +242,39 @@ "tooltip": "Signaled after ExpectEqual is invoked" }, "details": { - "name": "Unit Testing::Expect Equal", + "name": "Expect Equal", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", "details": { - "name": "Aabb" + "name": "Candidate" } }, { "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", "details": { - "name": "Aabb" + "name": "Reference" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "ExpectLessThan", + "base": "ExpectLessThan", "context": "Unit Testing", "entry": { "name": "In", @@ -285,70 +285,70 @@ "tooltip": "Signaled after ExpectLessThan is invoked" }, "details": { - "name": "Unit Testing::Expect Less Than", + "name": "Expect Less Than", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "double" + "name": "Candidate" } }, { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "double" + "name": "Reference" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "AddSuccess", + "base": "AddSuccess", "context": "Unit Testing", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke AddSuccess" + "tooltip": "When signaled, this will invoke Add Success" }, "exit": { "name": "Out", - "tooltip": "Signaled after AddSuccess is invoked" + "tooltip": "Signaled after Add Success is invoked" }, "details": { - "name": "Unit Testing::Add Success", + "name": "Add Success", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "ExpectNotEqual", + "base": "ExpectNotEqual", "context": "Unit Testing", "entry": { "name": "In", @@ -359,14 +359,14 @@ "tooltip": "Signaled after ExpectNotEqual is invoked" }, "details": { - "name": "Unit Testing::Expect Not Equal", + "name": "Expect Not Equal", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, @@ -385,13 +385,13 @@ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "ExpectGreaterThan", + "base": "ExpectGreaterThan", "context": "Unit Testing", "entry": { "name": "In", @@ -402,14 +402,14 @@ "tooltip": "Signaled after ExpectGreaterThan is invoked" }, "details": { - "name": "Unit Testing::Expect Greater Than", + "name": "Expect Greater Than", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, @@ -428,13 +428,13 @@ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] }, { - "key": "AddFailure", + "base": "AddFailure", "context": "Unit Testing", "entry": { "name": "In", @@ -445,21 +445,21 @@ "tooltip": "Signaled after AddFailure is invoked" }, "details": { - "name": "Unit Testing::Add Failure", + "name": "Add Failure", "category": "Other" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "const EntityId&", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "const AZStd::basic_string, alloc" + "name": "Report" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UnitTesting.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UnitTesting.names new file mode 100644 index 0000000000..64ecdb414a --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UnitTesting.names @@ -0,0 +1,484 @@ +{ + "entries": [ + { + "base": "Unit Testing", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Unit Testing" + }, + "methods": [ + { + "base": "ExpectLessThanEqual", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Expect Less Than Equal" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Expect Less Than Equal is invoked" + }, + "details": { + "name": "Expect Less Than Equal" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Candidate", + "tooltip": "left of <=" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Reference", + "tooltip": "right of <=" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "ExpectGreaterThanEqual", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Expect Greater Than Equal" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Expect Greater Than Equal is invoked" + }, + "details": { + "name": "Expect Greater Than Equal" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Candidate", + "tooltip": "left of >=" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Reference", + "tooltip": "right of >=" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "MarkComplete", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Mark Complete" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Mark Complete is invoked" + }, + "details": { + "name": "Mark Complete" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "ExpectTrue", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Expect True" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Expect True is invoked" + }, + "details": { + "name": "Expect True" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Candidate", + "tooltip": "a value that must be true" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "Checkpoint", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Checkpoint" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Checkpoint is invoked" + }, + "details": { + "name": "Checkpoint" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "ExpectFalse", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Expect False" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Expect False is invoked" + }, + "details": { + "name": "Expect False" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Candidate", + "tooltip": "a value that must be false" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "ExpectEqual", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Expect Equal" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Expect Equal is invoked" + }, + "details": { + "name": "Expect Equal" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", + "details": { + "name": "Candidate", + "tooltip": "left of ==" + } + }, + { + "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", + "details": { + "name": "Reference", + "tooltip": "right of ==" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "ExpectLessThan", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Expect Less Than" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Expect Less Than is invoked" + }, + "details": { + "name": "Expect Less Than" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Candidate", + "tooltip": "left of <" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Reference", + "tooltip": "right of <" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "AddSuccess", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Add Success" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Add Success is invoked" + }, + "details": { + "name": "Add Success" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "ExpectNotEqual", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Expect Not Equal" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Expect Not Equal is invoked" + }, + "details": { + "name": "Expect Not Equal" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", + "details": { + "name": "Candidate", + "tooltip": "left of !=" + } + }, + { + "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", + "details": { + "name": "Reference", + "tooltip": "right of !=" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "ExpectGreaterThan", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Expect Greater Than" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Expect Greater Than is invoked" + }, + "details": { + "name": "Expect Greater Than" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Candidate", + "tooltip": "left of >" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Reference", + "tooltip": "right of >" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + }, + { + "base": "AddFailure", + "context": "Unit Testing", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Add Failure" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Add Failure is invoked" + }, + "details": { + "name": "Add Failure" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Report", + "tooltip": "additional notes for the test report" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Uuid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Uuid.names index 1ba15fce9f..26ab64071d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Uuid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Uuid.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Uuid", + "base": "Uuid", "context": "BehaviorClass", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreateRandom", + "base": "CreateRandom", "context": "Uuid", "entry": { "name": "In", @@ -32,7 +32,7 @@ ] }, { - "key": "CreateNull", + "base": "CreateNull", "context": "Uuid", "entry": { "name": "In", @@ -55,7 +55,7 @@ ] }, { - "key": "Create", + "base": "Create", "context": "Uuid", "entry": { "name": "In", @@ -78,7 +78,7 @@ ] }, { - "key": "CreateName", + "base": "CreateName", "context": "Uuid", "entry": { "name": "In", @@ -109,7 +109,7 @@ ] }, { - "key": "Clone", + "base": "Clone", "context": "Uuid", "entry": { "name": "In", @@ -140,7 +140,7 @@ ] }, { - "key": "LessThan", + "base": "LessThan", "context": "Uuid", "entry": { "name": "In", @@ -171,13 +171,13 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "Is Less Than" + "name": "Less Than" } } ] }, { - "key": "IsNull", + "base": "IsNull", "context": "Uuid", "entry": { "name": "In", @@ -208,7 +208,7 @@ ] }, { - "key": "CreateString", + "base": "CreateString", "context": "Uuid", "entry": { "name": "In", @@ -225,7 +225,7 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "Name" + "name": "String" } }, { @@ -245,7 +245,7 @@ ] }, { - "key": "ToString", + "base": "ToString", "context": "Uuid", "entry": { "name": "In", @@ -276,7 +276,7 @@ ] }, { - "key": "Equal", + "base": "Equal", "context": "Uuid", "entry": { "name": "In", @@ -307,7 +307,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "Equal" + "name": "Is Equal" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/VertexColor.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/VertexColor.names index e7636f6353..19024105d3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/VertexColor.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/VertexColor.names @@ -1,12 +1,102 @@ { "entries": [ { - "key": "VertexColor", + "base": "VertexColor", "context": "BehaviorClass", "variant": "", "details": { - "name": "VertexColor" - } + "name": "Vertex Color" + }, + "methods": [ + { + "base": "Getred", + "details": { + "name": "Get Red" + }, + "params": [ + { + "typeid": "{937E3BF8-5204-4D40-A8DA-C8F083C89F9F}", + "details": { + "name": "Color" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Red" + } + } + ] + }, + { + "base": "Getgreen", + "details": { + "name": "Get Green" + }, + "params": [ + { + "typeid": "{937E3BF8-5204-4D40-A8DA-C8F083C89F9F}", + "details": { + "name": "Color" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Green" + } + } + ] + }, + { + "base": "Getblue", + "details": { + "name": "Get Blue" + }, + "params": [ + { + "typeid": "{937E3BF8-5204-4D40-A8DA-C8F083C89F9F}", + "details": { + "name": "Color" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Blue" + } + } + ] + }, + { + "base": "Getalpha", + "details": { + "name": "Get Alpha" + }, + "params": [ + { + "typeid": "{937E3BF8-5204-4D40-A8DA-C8F083C89F9F}", + "details": { + "name": "Color" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Alpha" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ViewPaneOptions.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ViewPaneOptions.names index 7a5a2c6d09..6d88ffc05b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ViewPaneOptions.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ViewPaneOptions.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ViewPaneOptions", + "base": "ViewPaneOptions", "context": "BehaviorClass", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoAuthorizationNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoAuthorizationNotificationBus.names index b96ab2fb37..94be770939 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoAuthorizationNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoAuthorizationNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSCognitoAuthorizationNotificationBus", + "base": "AWSCognitoAuthorizationNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnRequestAWSCredentialsSuccess", + "base": "OnRequestAWSCredentialsSuccess", "details": { "name": "On Request AWS Credentials Success" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnRequestAWSCredentialsFail", + "base": "OnRequestAWSCredentialsFail", "details": { "name": "On Request AWS Credentials Fail" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names index a796ec0f48..0286fffc7d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSCognitoUserManagementNotificationBus", + "base": "AWSCognitoUserManagementNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnEmailSignUpSuccess", + "base": "OnEmailSignUpSuccess", "details": { "name": "On Email Sign Up Success" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnEmailSignUpFail", + "base": "OnEmailSignUpFail", "details": { "name": "On Email Sign Up Fail" }, @@ -38,7 +38,7 @@ ] }, { - "key": "OnPhoneSignUpSuccess", + "base": "OnPhoneSignUpSuccess", "details": { "name": "On Phone Sign Up Success" }, @@ -52,7 +52,7 @@ ] }, { - "key": "OnPhoneSignUpFail", + "base": "OnPhoneSignUpFail", "details": { "name": "On Phone Sign Up Fail" }, @@ -66,13 +66,13 @@ ] }, { - "key": "OnConfirmSignUpSuccess", + "base": "OnConfirmSignUpSuccess", "details": { "name": "On Confirm Sign Up Success" } }, { - "key": "OnConfirmSignUpFail", + "base": "OnConfirmSignUpFail", "details": { "name": "On Confirm Sign Up Fail" }, @@ -86,13 +86,13 @@ ] }, { - "key": "OnForgotPasswordSuccess", + "base": "OnForgotPasswordSuccess", "details": { "name": "On Forgot Password Success" } }, { - "key": "OnForgotPasswordFail", + "base": "OnForgotPasswordFail", "details": { "name": "On Forgot Password Fail" }, @@ -106,13 +106,13 @@ ] }, { - "key": "OnConfirmForgotPasswordSuccess", + "base": "OnConfirmForgotPasswordSuccess", "details": { "name": "On Confirm Forgot Password Success" } }, { - "key": "OnConfirmForgotPasswordFail", + "base": "OnConfirmForgotPasswordFail", "details": { "name": "On Confirm Forgot Password Fail" }, @@ -126,13 +126,13 @@ ] }, { - "key": "OnEnableMFASuccess", + "base": "OnEnableMFASuccess", "details": { "name": "On Enable MFA Success" } }, { - "key": "OnEnableMFAFail", + "base": "OnEnableMFAFail", "details": { "name": "On Enable MFA Fail" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSDynamoDBBehaviorNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSDynamoDBBehaviorNotificationBus.names index c5840d7bdb..77e324d882 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSDynamoDBBehaviorNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSDynamoDBBehaviorNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSDynamoDBBehaviorNotificationBus", + "base": "AWSDynamoDBBehaviorNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnGetItemSuccess", + "base": "OnGetItemSuccess", "details": { "name": "On Get Item Success" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnGetItemError", + "base": "OnGetItemError", "details": { "name": "On Get Item Error" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSLambdaBehaviorNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSLambdaBehaviorNotificationBus.names index 713ece5219..b02432eb5f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSLambdaBehaviorNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSLambdaBehaviorNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSLambdaBehaviorNotificationBus", + "base": "AWSLambdaBehaviorNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnInvokeSuccess", + "base": "OnInvokeSuccess", "details": { "name": "On Invoke Success" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnInvokeError", + "base": "OnInvokeError", "details": { "name": "On Invoke Error" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSMetricsNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSMetricsNotificationBus.names index 64920f9444..22a39aece5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSMetricsNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSMetricsNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSMetricsNotificationBus", + "base": "AWSMetricsNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnSendMetricsSuccess", + "base": "OnSendMetricsSuccess", "details": { "name": "On Send Metrics Success" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnSendMetricsFailure", + "base": "OnSendMetricsFailure", "details": { "name": "On Send Metrics Failure" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSS3BehaviorNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSS3BehaviorNotificationBus.names index 55b093d348..38b0d6467d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSS3BehaviorNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSS3BehaviorNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSS3BehaviorNotificationBus", + "base": "AWSS3BehaviorNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnHeadObjectSuccess", + "base": "OnHeadObjectSuccess", "details": { "name": "On Head Object Success" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnHeadObjectError", + "base": "OnHeadObjectError", "details": { "name": "On Head Object Error" }, @@ -38,7 +38,7 @@ ] }, { - "key": "OnGetObjectSuccess", + "base": "OnGetObjectSuccess", "details": { "name": "On Get Object Success" }, @@ -52,7 +52,7 @@ ] }, { - "key": "OnGetObjectError", + "base": "OnGetObjectError", "details": { "name": "On Get Object Error" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ActorComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ActorComponentNotificationBus.names index 5b61508119..4ea752408b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ActorComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ActorComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ActorComponentNotificationBus", + "base": "ActorComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnActorInstanceCreated", + "base": "OnActorInstanceCreated", "details": { "name": "On Actor Instance Created" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnActorInstanceDestroyed", + "base": "OnActorInstanceDestroyed", "details": { "name": "On Actor Instance Destroyed" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ActorNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ActorNotificationBus.names index 77cb8b59c5..103b584015 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ActorNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ActorNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ActorNotificationBus", + "base": "ActorNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnMotionEvent", + "base": "OnMotionEvent", "details": { "name": "On Motion Event" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnMotionLoop", + "base": "OnMotionLoop", "details": { "name": "On Motion Loop" }, @@ -32,13 +32,13 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "Motion Name" + "name": "char" } } ] }, { - "key": "OnStateEntering", + "base": "OnStateEntering", "details": { "name": "On State Entering" }, @@ -46,13 +46,13 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "State Name" + "name": "char" } } ] }, { - "key": "OnStateEntered", + "base": "OnStateEntered", "details": { "name": "On State Entered" }, @@ -60,13 +60,13 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "State Name" + "name": "char" } } ] }, { - "key": "OnStateExiting", + "base": "OnStateExiting", "details": { "name": "On State Exiting" }, @@ -74,13 +74,13 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "State Name" + "name": "char" } } ] }, { - "key": "OnStateExited", + "base": "OnStateExited", "details": { "name": "On State Exited" }, @@ -88,13 +88,13 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "State Name" + "name": "char" } } ] }, { - "key": "OnStateTransitionStart", + "base": "OnStateTransitionStart", "details": { "name": "On State Transition Start" }, @@ -102,19 +102,19 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "From State" + "name": "char" } }, { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "To State" + "name": "char" } } ] }, { - "key": "OnStateTransitionEnd", + "base": "OnStateTransitionEnd", "details": { "name": "On State Transition End" }, @@ -122,13 +122,13 @@ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "From State" + "name": "char" } }, { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "To State" + "name": "char" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AnimGraphComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AnimGraphComponentNotificationBus.names index ec8d9fa193..f34fe7445a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AnimGraphComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AnimGraphComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AnimGraphComponentNotificationBus", + "base": "AnimGraphComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnAnimGraphInstanceCreated", + "base": "OnAnimGraphInstanceCreated", "details": { "name": "On Anim Graph Instance Created" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnAnimGraphInstanceDestroyed", + "base": "OnAnimGraphInstanceDestroyed", "details": { "name": "On Anim Graph Instance Destroyed" }, @@ -38,7 +38,7 @@ ] }, { - "key": "OnAnimGraphFloatParameterChanged", + "base": "OnAnimGraphFloatParameterChanged", "details": { "name": "On Anim Graph Float Parameter Changed" }, @@ -70,7 +70,7 @@ ] }, { - "key": "OnAnimGraphBoolParameterChanged", + "base": "OnAnimGraphBoolParameterChanged", "details": { "name": "On Anim Graph Bool Parameter Changed" }, @@ -102,7 +102,7 @@ ] }, { - "key": "OnAnimGraphStringParameterChanged", + "base": "OnAnimGraphStringParameterChanged", "details": { "name": "On Anim Graph String Parameter Changed" }, @@ -134,7 +134,7 @@ ] }, { - "key": "OnAnimGraphVector2ParameterChanged", + "base": "OnAnimGraphVector2ParameterChanged", "details": { "name": "On Anim Graph Vector2 Parameter Changed" }, @@ -166,7 +166,7 @@ ] }, { - "key": "OnAnimGraphVector3ParameterChanged", + "base": "OnAnimGraphVector3ParameterChanged", "details": { "name": "On Anim Graph Vector3 Parameter Changed" }, @@ -198,7 +198,7 @@ ] }, { - "key": "OnAnimGraphRotationParameterChanged", + "base": "OnAnimGraphRotationParameterChanged", "details": { "name": "On Anim Graph Rotation Parameter Changed" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AttachmentComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AttachmentComponentNotificationBus.names index 64f2f4c204..76c3024999 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AttachmentComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AttachmentComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AttachmentComponentNotificationBus", + "base": "AttachmentComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnAttached", + "base": "OnAttached", "details": { "name": "On Attached" }, @@ -25,7 +25,7 @@ ] }, { - "key": "OnDetached", + "base": "OnDetached", "details": { "name": "On Detached" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/Audio System Component Notifications.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/Audio System Component Notifications.names index adf505b728..7909af5ebd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/Audio System Component Notifications.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/Audio System Component Notifications.names @@ -1,23 +1,24 @@ { "entries": [ { - "key": "Audio System Component Notifications", + "base": "Audio System Component Notifications", "context": "EBusHandler", "variant": "", "details": { - "name": "Audio System Component Notifications" + "name": "Audio System", + "category": "Audio" }, "methods": [ { - "key": "OnGamePaused", + "base": "OnGamePaused", "details": { - "name": "OnGamePaused" + "name": "On Game Paused" } }, { - "key": "OnGameUnpaused", + "base": "OnGameUnpaused", "details": { - "name": "OnGameUnpaused" + "name": "On Game Unpaused" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AudioTriggerComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AudioTriggerComponentNotificationBus.names index d134f20f74..45baf45199 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AudioTriggerComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AudioTriggerComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AudioTriggerComponentNotificationBus", + "base": "AudioTriggerComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnTriggerFinished", + "base": "OnTriggerFinished", "details": { "name": "On Trigger Finished", "tooltip": "Executes when an audio trigger has finished playing (the sound has ended)." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names index f90336780e..c567504c83 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AuthenticationProviderNotificationBus", + "base": "AuthenticationProviderNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnPasswordGrantSingleFactorSignInSuccess", + "base": "OnPasswordGrantSingleFactorSignInSuccess", "details": { "name": "On Password Grant Single Factor Sign In Success" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnPasswordGrantSingleFactorSignInFail", + "base": "OnPasswordGrantSingleFactorSignInFail", "details": { "name": "On Password Grant Single Factor Sign In Fail" }, @@ -38,13 +38,13 @@ ] }, { - "key": "OnPasswordGrantMultiFactorSignInSuccess", + "base": "OnPasswordGrantMultiFactorSignInSuccess", "details": { "name": "On Password Grant Multi Factor Sign In Success" } }, { - "key": "OnPasswordGrantMultiFactorSignInFail", + "base": "OnPasswordGrantMultiFactorSignInFail", "details": { "name": "On Password Grant Multi Factor Sign In Fail" }, @@ -58,7 +58,7 @@ ] }, { - "key": "OnPasswordGrantMultiFactorConfirmSignInSuccess", + "base": "OnPasswordGrantMultiFactorConfirmSignInSuccess", "details": { "name": "On Password Grant Multi Factor Confirm Sign In Success" }, @@ -72,7 +72,7 @@ ] }, { - "key": "OnPasswordGrantMultiFactorConfirmSignInFail", + "base": "OnPasswordGrantMultiFactorConfirmSignInFail", "details": { "name": "On Password Grant Multi Factor Confirm Sign In Fail" }, @@ -86,7 +86,7 @@ ] }, { - "key": "OnDeviceCodeGrantSignInSuccess", + "base": "OnDeviceCodeGrantSignInSuccess", "details": { "name": "On Device Code Grant Sign In Success" }, @@ -112,7 +112,7 @@ ] }, { - "key": "OnDeviceCodeGrantSignInFail", + "base": "OnDeviceCodeGrantSignInFail", "details": { "name": "On Device Code Grant Sign In Fail" }, @@ -126,7 +126,7 @@ ] }, { - "key": "OnDeviceCodeGrantConfirmSignInSuccess", + "base": "OnDeviceCodeGrantConfirmSignInSuccess", "details": { "name": "On Device Code Grant Confirm Sign In Success" }, @@ -140,7 +140,7 @@ ] }, { - "key": "OnDeviceCodeGrantConfirmSignInFail", + "base": "OnDeviceCodeGrantConfirmSignInFail", "details": { "name": "On Device Code Grant Confirm Sign In Fail" }, @@ -154,7 +154,7 @@ ] }, { - "key": "OnRefreshTokensSuccess", + "base": "OnRefreshTokensSuccess", "details": { "name": "On Refresh Tokens Success" }, @@ -168,7 +168,7 @@ ] }, { - "key": "OnRefreshTokensFail", + "base": "OnRefreshTokensFail", "details": { "name": "On Refresh Tokens Fail" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/BlastFamilyComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/BlastFamilyComponentNotificationBus.names index c8722bf36f..b083994547 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/BlastFamilyComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/BlastFamilyComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "BlastFamilyComponentNotificationBus", + "base": "BlastFamilyComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnActorCreated", + "base": "OnActorCreated", "details": { "name": "On Actor Created" }, @@ -25,7 +25,7 @@ ] }, { - "key": "OnActorDestroyed", + "base": "OnActorDestroyed", "details": { "name": "On Actor Destroyed" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CameraNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CameraNotificationBus.names index 3c12c9643e..d1c0a4942e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CameraNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CameraNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CameraNotificationBus", + "base": "CameraNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnCameraAdded", + "base": "OnCameraAdded", "details": { "name": "On Camera Added" }, @@ -25,7 +25,7 @@ ] }, { - "key": "OnCameraRemoved", + "base": "OnCameraRemoved", "details": { "name": "On Camera Removed" }, @@ -40,7 +40,7 @@ ] }, { - "key": "OnActiveViewChanged", + "base": "OnActiveViewChanged", "details": { "name": "On Active View Changed" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CollisionNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CollisionNotificationBus.names index bf835079c8..76327e1006 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CollisionNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CollisionNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CollisionNotificationBus", + "base": "CollisionNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnCollisionBegin", + "base": "OnCollisionBegin", "details": { "name": "On Collision Begin" }, @@ -31,7 +31,7 @@ ] }, { - "key": "OnCollisionPersist", + "base": "OnCollisionPersist", "details": { "name": "On Collision Persist", "tooltip": "Raised while this collider is in contact with another collider" @@ -53,7 +53,7 @@ ] }, { - "key": "OnCollisionEnd", + "base": "OnCollisionEnd", "details": { "name": "On Collision End", "tooltip": "Raised when a collider loses contact with another collider" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ConsoleNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ConsoleNotificationBus.names index 9bd1bfbbb1..0f990a40b1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ConsoleNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ConsoleNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ConsoleNotificationBus", + "base": "ConsoleNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnConsoleCommandExecuted", + "base": "OnConsoleCommandExecuted", "details": { "name": "On Console Command Executed" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorComponentModeNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorComponentModeNotificationBus.names index 2dfae7ace9..391f467a6b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorComponentModeNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorComponentModeNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorComponentModeNotificationBus", + "base": "EditorComponentModeNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ActiveComponentModeChanged", + "base": "ActiveComponentModeChanged", "details": { "name": "ActiveComponentModeChanged" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorEntityContextNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorEntityContextNotificationBus.names index 699b59c46c..52472570a4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorEntityContextNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorEntityContextNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorEntityContextNotificationBus", + "base": "EditorEntityContextNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "OnEditorEntityCreated", + "base": "OnEditorEntityCreated", "details": { "name": "OnEditorEntityCreated" }, @@ -24,7 +24,7 @@ ] }, { - "key": "OnEditorEntityDeleted", + "base": "OnEditorEntityDeleted", "details": { "name": "OnEditorEntityDeleted" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorEventBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorEventBus.names index 7aa15f1009..6327d02fb3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorEventBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EditorEventBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorEventBus", + "base": "EditorEventBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "NotifyRegisterViews", + "base": "NotifyRegisterViews", "details": { "name": "NotifyRegisterViews" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EntityBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EntityBus.names index b72951159e..3e3cec1916 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EntityBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/EntityBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EntityBus", + "base": "EntityBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnEntityActivated", + "base": "OnEntityActivated", "details": { "name": "On Entity Activated", "tooltip": "Signals that an entity was activated" @@ -26,7 +26,7 @@ ] }, { - "key": "OnEntityDeactivated", + "base": "OnEntityDeactivated", "details": { "name": "On Entity Deactivated", "tooltip": "Signals that an entity is being deactivated" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/FrameCaptureNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/FrameCaptureNotificationBus.names index a3067cb11a..ab5be84903 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/FrameCaptureNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/FrameCaptureNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "FrameCaptureNotificationBus", + "base": "FrameCaptureNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "OnCaptureFinished", + "base": "OnCaptureFinished", "details": { "name": "OnCaptureFinished" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/GlobalScriptEvents.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/GlobalScriptEvents.names index 7a62831c76..4b0b9d1ef5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/GlobalScriptEvents.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/GlobalScriptEvents.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GlobalScriptEvents", + "base": "GlobalScriptEvents", "context": "EBusHandler", "variant": "", "details": { @@ -9,13 +9,13 @@ }, "methods": [ { - "key": "Void", + "base": "Void", "details": { "name": "Void" } }, { - "key": "Not", + "base": "Not", "details": { "name": "Not" }, @@ -37,7 +37,7 @@ ] }, { - "key": "Increment", + "base": "Increment", "details": { "name": "Increment" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/InputSystemNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/InputSystemNotificationBus.names index 5aea1ad6b7..b3893a3486 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/InputSystemNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/InputSystemNotificationBus.names @@ -1,23 +1,24 @@ { "entries": [ { - "key": "InputSystemNotificationBus", + "base": "InputSystemNotificationBus", "context": "EBusHandler", "variant": "", "details": { - "name": "InputSystemNotificationBus" + "name": "Input System", + "category": "Input" }, "methods": [ { - "key": "OnPreInputUpdate", + "base": "OnPreInputUpdate", "details": { - "name": "OnPreInputUpdate" + "name": "On Pre Input Update" } }, { - "key": "OnPostInputUpdate", + "base": "OnPostInputUpdate", "details": { - "name": "OnPostInputUpdate" + "name": "On Post Input Update" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/LocalScriptEvents.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/LocalScriptEvents.names index bb23219646..ed27ffe5e1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/LocalScriptEvents.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/LocalScriptEvents.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "LocalScriptEvents", + "base": "LocalScriptEvents", "context": "EBusHandler", "variant": "", "details": { @@ -9,13 +9,13 @@ }, "methods": [ { - "key": "Void", + "base": "Void", "details": { "name": "Void" } }, { - "key": "Not", + "base": "Not", "details": { "name": "Not" }, @@ -37,7 +37,7 @@ ] }, { - "key": "Increment", + "base": "Increment", "details": { "name": "Increment" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/LookAtNotification.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/LookAtNotification.names index 6d1ff93ed4..e27ea1f05b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/LookAtNotification.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/LookAtNotification.names @@ -1,24 +1,24 @@ { "entries": [ { - "key": "LookAtNotification", + "base": "LookAtNotification", "context": "EBusHandler", "variant": "", "details": { - "name": "LookAtNotification", - "tooltip": "Notifications for the Look At Component" + "name": "Look At", + "category": "Gameplay" }, "methods": [ { - "key": "OnTargetChanged", + "base": "OnTargetChanged", "details": { - "name": "OnTargetChanged" + "name": "On Target Changed" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/MeshComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/MeshComponentNotificationBus.names index a62652ba47..08e5be460a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/MeshComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/MeshComponentNotificationBus.names @@ -1,17 +1,18 @@ { "entries": [ { - "key": "MeshComponentNotificationBus", + "base": "MeshComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { - "name": "MeshComponentNotificationBus" + "name": "Mesh", + "category": "Rendering" }, "methods": [ { - "key": "OnModelReady", + "base": "OnModelReady", "details": { - "name": "OnModelReady" + "name": "On Model Ready" }, "params": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/NavigationComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/NavigationComponentNotificationBus.names index b7549119c5..15e4a9a85f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/NavigationComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/NavigationComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "NavigationComponentNotificationBus", + "base": "NavigationComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnSearchingForPath", + "base": "OnSearchingForPath", "details": { "name": "On Searching For Path" }, @@ -25,7 +25,7 @@ ] }, { - "key": "OnTraversalStarted", + "base": "OnTraversalStarted", "details": { "name": "On Traversal Started" }, @@ -40,7 +40,7 @@ ] }, { - "key": "OnTraversalPathUpdate", + "base": "OnTraversalPathUpdate", "details": { "name": "On Traversal Path Update" }, @@ -69,7 +69,7 @@ ] }, { - "key": "OnTraversalInProgress", + "base": "OnTraversalInProgress", "details": { "name": "On Traversal In Progress" }, @@ -91,7 +91,7 @@ ] }, { - "key": "OnTraversalComplete", + "base": "OnTraversalComplete", "details": { "name": "On Traversal Complete" }, @@ -106,7 +106,7 @@ ] }, { - "key": "OnTraversalCancelled", + "base": "OnTraversalCancelled", "details": { "name": "On Traversal Cancelled" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/NetworkTestPlayerComponentBusHandler.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/NetworkTestPlayerComponentBusHandler.names index 9d69acdc02..ddb3349d59 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/NetworkTestPlayerComponentBusHandler.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/NetworkTestPlayerComponentBusHandler.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "NetworkTestPlayerComponentBusHandler", + "base": "NetworkTestPlayerComponentBusHandler", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateInput", + "base": "CreateInput", "details": { "name": "Create Input" }, @@ -32,7 +32,7 @@ ] }, { - "key": "ProcessInput", + "base": "ProcessInput", "details": { "name": "Process Input" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ProfilingCaptureNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ProfilingCaptureNotificationBus.names index d1e76ba23a..d02dcfb1a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ProfilingCaptureNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ProfilingCaptureNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ProfilingCaptureNotificationBus", + "base": "ProfilingCaptureNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "OnCaptureQueryTimestampFinished", + "base": "OnCaptureQueryTimestampFinished", "details": { "name": "OnCaptureQueryTimestampFinished" }, @@ -29,7 +29,7 @@ ] }, { - "key": "OnCaptureCpuFrameTimeFinished", + "base": "OnCaptureCpuFrameTimeFinished", "details": { "name": "OnCaptureCpuFrameTimeFinished" }, @@ -49,7 +49,7 @@ ] }, { - "key": "OnCaptureQueryPipelineStatisticsFinished", + "base": "OnCaptureQueryPipelineStatisticsFinished", "details": { "name": "OnCaptureQueryPipelineStatisticsFinished" }, @@ -69,7 +69,7 @@ ] }, { - "key": "OnCaptureBenchmarkMetadataFinished", + "base": "OnCaptureBenchmarkMetadataFinished", "details": { "name": "OnCaptureBenchmarkMetadataFinished" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ScriptBuildingNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ScriptBuildingNotificationBus.names index 08af710bc3..3d501e7ad9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ScriptBuildingNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ScriptBuildingNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ScriptBuildingNotificationBus", + "base": "ScriptBuildingNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "OnUpdateManifest", + "base": "OnUpdateManifest", "details": { "name": "OnUpdateManifest" }, @@ -31,7 +31,7 @@ ] }, { - "key": "OnPrepareForExport", + "base": "OnPrepareForExport", "details": { "name": "OnPrepareForExport" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SequenceComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SequenceComponentNotificationBus.names index cadb4ef7f1..146d5b4401 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SequenceComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SequenceComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SequenceComponentNotificationBus", + "base": "SequenceComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnStart", + "base": "OnStart", "details": { "name": "On Start", "tooltip": "Called when Sequence starts" @@ -25,7 +25,7 @@ ] }, { - "key": "OnStop", + "base": "OnStop", "details": { "name": "On Stop", "tooltip": "Called when Sequence stops" @@ -40,21 +40,21 @@ ] }, { - "key": "OnPause", + "base": "OnPause", "details": { "name": "On Pause", "tooltip": "Called when Sequence pauses" } }, { - "key": "OnResume", + "base": "OnResume", "details": { "name": "On Resume", "tooltip": "Called when Sequence resumes" } }, { - "key": "OnAbort", + "base": "OnAbort", "details": { "name": "On Abort", "tooltip": "Called when Sequence is aborted" @@ -69,7 +69,7 @@ ] }, { - "key": "OnUpdate", + "base": "OnUpdate", "details": { "name": "On Update", "tooltip": "Called when Sequence is updated. That is, when the current play time changes, or the playback speed changes" @@ -84,7 +84,7 @@ ] }, { - "key": "OnTrackEventTriggered", + "base": "OnTrackEventTriggered", "details": { "name": "On Track Event Triggered", "tooltip": "Called when Sequence Event is triggered" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ShapeComponentNotificationsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ShapeComponentNotificationsBus.names index 8041830dff..5a3a4ae797 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ShapeComponentNotificationsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ShapeComponentNotificationsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeComponentNotificationsBus", + "base": "ShapeComponentNotificationsBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnShapeChanged", + "base": "OnShapeChanged", "details": { "name": "On Shape Changed" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SimpleStateComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SimpleStateComponentNotificationBus.names index 2fe77025c7..3c198f9de5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SimpleStateComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SimpleStateComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SimpleStateComponentNotificationBus", + "base": "SimpleStateComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnStateChanged", + "base": "OnStateChanged", "details": { "name": "On State Changed", "tooltip": "Notifies that the state has changed from state oldName to state newName" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SpawnerComponentNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SpawnerComponentNotificationBus.names index 39c8a095af..31f0b8a34f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SpawnerComponentNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SpawnerComponentNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SpawnerComponentNotificationBus", + "base": "SpawnerComponentNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,90 +10,84 @@ }, "methods": [ { - "key": "OnSpawnBegin", + "base": "OnSpawnBegin", "details": { - "name": "On Spawn Begin", - "tooltip": "Notifies when the spawn starts" + "name": "On Spawn Begin" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "Slice", - "tooltip": "Slice instance from the spawn event" + "name": "Slice Instantiation Ticket" } } ] }, { - "key": "OnSpawnEnd", + "base": "OnSpawnEnd", "details": { - "name": "On Spawn End", - "tooltip": "Notifies when the spawn completes" + "name": "On Spawn End" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "Slice", - "tooltip": "Slice instance from the spawn event" + "name": "Slice Instantiation Ticket" } } ] }, { - "key": "OnEntitySpawned", + "base": "OnEntitySpawned", "details": { - "name": "On Entity Spawned", - "tooltip": "Notify that an entity has spawned, will be called once for each entity spawned in a slice" + "name": "On Entity Spawned" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "Slice", - "tooltip": "Slice instance from the spawn event" + "name": "Slice Instantiation Ticket" } }, { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "Entity", - "tooltip": "EntityID of the spawned entity, for each spawned entity" + "name": "Entity Id", + "tooltip": "Entity Unique Id" } } ] }, { - "key": "OnSpawnedSliceDestroyed", + "base": "OnSpawnedSliceDestroyed", "details": { - "name": "OnSpawnedSliceDestroyed" + "name": "On Spawned Slice Destroyed" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket" + "name": "Slice Instantiation Ticket" } } ] }, { - "key": "OnEntitiesSpawned", + "base": "OnEntitiesSpawned", "details": { - "name": "OnEntitiesSpawned" + "name": "On Entities Spawned" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket" + "name": "Slice Instantiation Ticket" } }, { "typeid": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "details": { - "name": "AZStd::vector" + "name": "Entities" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SubmarineEvents.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SubmarineEvents.names index a2e75129cf..93469fc2e1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SubmarineEvents.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/SubmarineEvents.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SubmarineEvents", + "base": "SubmarineEvents", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetSpeed", + "base": "SetSpeed", "details": { "name": "SetSpeed" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TagComponentNotificationsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TagComponentNotificationsBus.names index 1fc8a7cdab..9067ed5694 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TagComponentNotificationsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TagComponentNotificationsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TagComponentNotificationsBus", + "base": "TagComponentNotificationsBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnTagAdded", + "base": "OnTagAdded", "details": { "name": "On Tag Added", "tooltip": "Executes when a tag is added to the source entity" @@ -26,7 +26,7 @@ ] }, { - "key": "OnTagRemoved", + "base": "OnTagRemoved", "details": { "name": "On Tag Removed", "tooltip": "Executes when a tag is removed from the source entity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TagGlobalNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TagGlobalNotificationBus.names index e5b8179b69..e1a74900be 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TagGlobalNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TagGlobalNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TagGlobalNotificationBus", + "base": "TagGlobalNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnEntityTagAdded", + "base": "OnEntityTagAdded", "details": { "name": "On Entity Tag Added", "tooltip": "Executes when the specified source tag is added to any entity" @@ -26,7 +26,7 @@ ] }, { - "key": "OnEntityTagRemoved", + "base": "OnEntityTagRemoved", "details": { "name": "On Entity Tag Removed", "tooltip": "Executes when the specified source tag is removed from any entity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TickBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TickBus.names index 5144e771d3..690529859a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TickBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TickBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TickBus", + "base": "TickBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnTick", + "base": "OnTick", "details": { "name": "On Tick", "tooltip": "Signals that the application has issued a tick" @@ -33,7 +33,7 @@ ] }, { - "key": "GetTickOrder", + "base": "GetTickOrder", "details": { "name": "Get Tick Order", "tooltip": "Specifies the order in which a handler receives tick events relative to other handlers" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ToolsApplicationNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ToolsApplicationNotificationBus.names index 9572139c16..7829467814 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ToolsApplicationNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ToolsApplicationNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ToolsApplicationNotificationBus", + "base": "ToolsApplicationNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "EntityRegistered", + "base": "EntityRegistered", "details": { "name": "EntityRegistered" }, @@ -24,7 +24,7 @@ ] }, { - "key": "EntityDeregistered", + "base": "EntityDeregistered", "details": { "name": "EntityDeregistered" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TraceMessageBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TraceMessageBus.names index 0d01423428..3f5bb30372 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TraceMessageBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TraceMessageBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TraceMessageBus", + "base": "TraceMessageBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "OnPreAssert", + "base": "OnPreAssert", "details": { "name": "OnPreAssert" }, @@ -49,7 +49,7 @@ ] }, { - "key": "OnPreError", + "base": "OnPreError", "details": { "name": "OnPreError" }, @@ -95,7 +95,7 @@ ] }, { - "key": "OnPreWarning", + "base": "OnPreWarning", "details": { "name": "OnPreWarning" }, @@ -141,7 +141,7 @@ ] }, { - "key": "OnAssert", + "base": "OnAssert", "details": { "name": "OnAssert" }, @@ -163,7 +163,7 @@ ] }, { - "key": "OnError", + "base": "OnError", "details": { "name": "OnError" }, @@ -191,7 +191,7 @@ ] }, { - "key": "OnWarning", + "base": "OnWarning", "details": { "name": "OnWarning" }, @@ -219,7 +219,7 @@ ] }, { - "key": "OnException", + "base": "OnException", "details": { "name": "OnException" }, @@ -241,7 +241,7 @@ ] }, { - "key": "OnPrintf", + "base": "OnPrintf", "details": { "name": "OnPrintf" }, @@ -269,7 +269,7 @@ ] }, { - "key": "OnOutput", + "base": "OnOutput", "details": { "name": "OnOutput" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TransformNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TransformNotificationBus.names index 88090b8a30..aefaab4035 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TransformNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TransformNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TransformNotificationBus", + "base": "TransformNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnTransformChanged", + "base": "OnTransformChanged", "details": { "name": "On Transform Changed", "tooltip": "Signals that the local or world transform of the entity changed" @@ -33,7 +33,7 @@ ] }, { - "key": "OnParentChanged", + "base": "OnParentChanged", "details": { "name": "On Parent Changed", "tooltip": "Signals that the parent of the entity changed" @@ -56,7 +56,7 @@ ] }, { - "key": "OnChildAdded", + "base": "OnChildAdded", "details": { "name": "On Child Added", "tooltip": "Signals that a child was added to the entity" @@ -72,7 +72,7 @@ ] }, { - "key": "OnChildRemoved", + "base": "OnChildRemoved", "details": { "name": "On Child Removed", "tooltip": "Signals that a child was removed from the entity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TriggerNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TriggerNotificationBus.names index 726763e12e..a78fcf4dc4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TriggerNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/TriggerNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TriggerNotificationBus", + "base": "TriggerNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnTriggerEnter", + "base": "OnTriggerEnter", "details": { "name": "On Trigger Enter", "tooltip": "Triggered when another collider enters this trigger" @@ -26,7 +26,7 @@ ] }, { - "key": "OnTriggerExit", + "base": "OnTriggerExit", "details": { "name": "On Trigger Exit", "tooltip": "Triggered when another collider exits this trigger" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiAnimationNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiAnimationNotificationBus.names index cb4411af2f..06a9ed1f38 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiAnimationNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiAnimationNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiAnimationNotificationBus", + "base": "UiAnimationNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnUiAnimationEvent", + "base": "OnUiAnimationEvent", "details": { "name": "On Animation Event", "tooltip": "Executes when an animation event occurs" @@ -33,7 +33,7 @@ ] }, { - "key": "OnUiTrackEvent", + "base": "OnUiTrackEvent", "details": { "name": "OnUiTrackEvent" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiButtonNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiButtonNotificationBus.names index 3e4f19f235..7e36a2ba20 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiButtonNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiButtonNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiButtonNotificationBus", + "base": "UiButtonNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnButtonClick", + "base": "OnButtonClick", "details": { "name": "On Button Click", "tooltip": "Executes when the button has been clicked" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasAssetRefNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasAssetRefNotificationBus.names index de65b7363a..15e2b87526 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasAssetRefNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasAssetRefNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasAssetRefNotificationBus", + "base": "UiCanvasAssetRefNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnCanvasLoadedIntoEntity", + "base": "OnCanvasLoadedIntoEntity", "details": { "name": "On Canvas Loaded Into Entity", "tooltip": "Executes when the canvas asset reference loads a canvas" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasInputNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasInputNotificationBus.names index 597f57c4f2..86d7ff6b69 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasInputNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasInputNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasInputNotificationBus", + "base": "UiCanvasInputNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnCanvasPrimaryPressed", + "base": "OnCanvasPrimaryPressed", "details": { "name": "On Canvas Primary Pressed", "tooltip": "Executes on a positional input press" @@ -26,7 +26,7 @@ ] }, { - "key": "OnCanvasPrimaryReleased", + "base": "OnCanvasPrimaryReleased", "details": { "name": "On Canvas Primary Released", "tooltip": "Executes on a positional input release" @@ -42,7 +42,7 @@ ] }, { - "key": "OnCanvasMultiTouchPressed", + "base": "OnCanvasMultiTouchPressed", "details": { "name": "On Canvas Multi-touch Pressed", "tooltip": "Executes on a positional input press" @@ -65,7 +65,7 @@ ] }, { - "key": "OnCanvasMultiTouchReleased", + "base": "OnCanvasMultiTouchReleased", "details": { "name": "On Canvas Multi-touch Released", "tooltip": "Executes on a positional input release" @@ -88,7 +88,7 @@ ] }, { - "key": "OnCanvasHoverStart", + "base": "OnCanvasHoverStart", "details": { "name": "On Canvas Hover Start", "tooltip": "Executes when an element starts being hovered" @@ -104,7 +104,7 @@ ] }, { - "key": "OnCanvasHoverEnd", + "base": "OnCanvasHoverEnd", "details": { "name": "On Canvas Hover End", "tooltip": "Executes when an element ends being hovered" @@ -120,7 +120,7 @@ ] }, { - "key": "OnCanvasEnterPressed", + "base": "OnCanvasEnterPressed", "details": { "name": "On Canvas Enter Pressed", "tooltip": "Executes when the “enter” key is pressed" @@ -136,7 +136,7 @@ ] }, { - "key": "OnCanvasEnterReleased", + "base": "OnCanvasEnterReleased", "details": { "name": "On Canvas Enter Released", "tooltip": "Executes when the enter key is released" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasNotificationBus.names index 662890e4d3..e919f654c7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasNotificationBus", + "base": "UiCanvasNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnAction", + "base": "OnAction", "details": { "name": "On Action", "tooltip": "Executes when the canvas sends an action" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasRefNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasRefNotificationBus.names index 79b4773d25..9677c9241a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasRefNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCanvasRefNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasRefNotificationBus", + "base": "UiCanvasRefNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnCanvasRefChanged", + "base": "OnCanvasRefChanged", "details": { "name": "On Canvas Ref Changed", "tooltip": "Executes when the canvas referenced by a UiCanvasAssetRefComponent has changed. This can happen when \"Load Canvas\", \"Unload Canvas\", or \"Set Canvas Ref Entity\" is called" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCheckboxNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCheckboxNotificationBus.names index f7c17fcac3..d64769915e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCheckboxNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiCheckboxNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCheckboxNotificationBus", + "base": "UiCheckboxNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnCheckboxStateChange", + "base": "OnCheckboxStateChange", "details": { "name": "On Checkbox State Change", "tooltip": "Executes when the checkbox state has changed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDraggableNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDraggableNotificationBus.names index e4460fb79c..6fa083ccf6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDraggableNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDraggableNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDraggableNotificationBus", + "base": "UiDraggableNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnDragStart", + "base": "OnDragStart", "details": { "name": "On Drag Start", "tooltip": "Executes when dragging is detected on the draggable component. For mouse or touch input, this occurs when movement has been detected after the press or touch" @@ -26,7 +26,7 @@ ] }, { - "key": "OnDrag", + "base": "OnDrag", "details": { "name": "On Drag", "tooltip": "Executes each time the drag position changes during dragging. \"On Drag\" events happen only between \"On Drag Start\" and \"On Drag End\" events" @@ -42,7 +42,7 @@ ] }, { - "key": "OnDragEnd", + "base": "OnDragEnd", "details": { "name": "On Drag End", "tooltip": "Executes at the end of dragging when the release input event occurs. The \"On Drag End\" notification is sent before the \"On Drop\" drop target notification" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropTargetNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropTargetNotificationBus.names index efd1277d08..1cc9259db4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropTargetNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropTargetNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDropTargetNotificationBus", + "base": "UiDropTargetNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnDropHoverStart", + "base": "OnDropHoverStart", "details": { "name": "On Drop Hover Start", "tooltip": "Executes when the focus starts to be on the drop target during dragging" @@ -26,7 +26,7 @@ ] }, { - "key": "OnDropHoverEnd", + "base": "OnDropHoverEnd", "details": { "name": "On Drop Hover End", "tooltip": "Executes when the focus stops being on the drop target during dragging" @@ -42,7 +42,7 @@ ] }, { - "key": "OnDrop", + "base": "OnDrop", "details": { "name": "On Drop", "tooltip": "Executes when a draggable element is dropped on the drop target. Implement the game logic of what should happen on drag and drop here" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropdownNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropdownNotificationBus.names index 2bf6ab7674..be7c62fbb6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropdownNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropdownNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDropdownNotificationBus", + "base": "UiDropdownNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,21 +10,21 @@ }, "methods": [ { - "key": "OnDropdownExpanded", + "base": "OnDropdownExpanded", "details": { "name": "On Dropdown Expanded", "tooltip": "Executes when the dropdown is expanded" } }, { - "key": "OnDropdownCollapsed", + "base": "OnDropdownCollapsed", "details": { "name": "On Dropdown Collapsed", "tooltip": "Executes when the dropdown is collapsed" } }, { - "key": "OnDropdownValueChanged", + "base": "OnDropdownValueChanged", "details": { "name": "On Dropdown Value Changed", "tooltip": "Executes when an option is selected" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropdownOptionNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropdownOptionNotificationBus.names index ae0dfa4c70..f285f552a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropdownOptionNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDropdownOptionNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDropdownOptionNotificationBus", + "base": "UiDropdownOptionNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnDropdownOptionSelected", + "base": "OnDropdownOptionSelected", "details": { "name": "On Dropdown Option Selected", "tooltip": "Executes when the dropdown option was selected" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDynamicScrollBoxDataBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDynamicScrollBoxDataBus.names index 2f3c04119f..19407e35ea 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDynamicScrollBoxDataBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDynamicScrollBoxDataBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDynamicScrollBoxDataBus", + "base": "UiDynamicScrollBoxDataBus", "context": "EBusHandler", "variant": "", "details": { @@ -11,7 +11,7 @@ }, "methods": [ { - "key": "GetNumElements", + "base": "GetNumElements", "details": { "name": "Get Number Of Elements", "tooltip": "Gets the number of elements in the list. Called when the list is being constructed (in the component's InGamePostActivate or when RefreshContent is being called explicitly). Used with lists that are not divided into sections" @@ -26,7 +26,7 @@ ] }, { - "key": "GetElementWidth", + "base": "GetElementWidth", "details": { "name": "Get Element Width", "tooltip": "Gets the width of an element at the specified index. Called when an element’s size is needed by a horizontal list of variable element sizes, and the “auto calculate size” option is disabled. Used with lists that are not divided into sections" @@ -51,7 +51,7 @@ ] }, { - "key": "GetElementHeight", + "base": "GetElementHeight", "details": { "name": "Get Element Height", "tooltip": "Gets the height of an element at the specified index. Called when an element’s size is needed by a vertical list of variable element sizes, and the “auto calculate size” option is disabled. Used with lists that are not divided into sections" @@ -76,7 +76,7 @@ ] }, { - "key": "GetNumSections", + "base": "GetNumSections", "details": { "name": "Get Number Of Sections", "tooltip": "Gets the number of sections in the list. Called when the list is being constructed (in the component's InGamePostActivate or when RefreshContent is being called explicitly). Used with lists that are divided into section" @@ -91,7 +91,7 @@ ] }, { - "key": "GetNumElementsInSection", + "base": "GetNumElementsInSection", "details": { "name": "Get Num Elements in Section", "tooltip": "Gets the number of elements in the specified section. Called when the list is being constructed (in the component's InGamePostActivate or when RefreshContent is being called explicitly). Used with lists that are divided into sections" @@ -116,7 +116,7 @@ ] }, { - "key": "GetElementInSectionWidth", + "base": "GetElementInSectionWidth", "details": { "name": "Get Element In Section Width", "tooltip": "Gets the width of an element at the specified section and element index. Called when an element’s size is needed by a horizontal list of variable element sizes, and the “auto calculate size” option is disabled. Used with lists that are divided into sections" @@ -148,7 +148,7 @@ ] }, { - "key": "GetElementInSectionHeight", + "base": "GetElementInSectionHeight", "details": { "name": "Get Element In Section Height", "tooltip": "Gets the height of an element at the specified section and element index. Called when an element’s size is needed by a vertical list of variable element sizes, and the “auto calculate size” option is disabled. Used with lists that are divided into sections" @@ -180,7 +180,7 @@ ] }, { - "key": "GetSectionHeaderWidth", + "base": "GetSectionHeaderWidth", "details": { "name": "Get Section Header Width", "tooltip": "Gets the width of a header at the specified section. Called when a header’s size is needed by a horizontal list of variable header sizes, and the “auto calculate size” option is disabled. Used with lists that are divided into sections" @@ -205,7 +205,7 @@ ] }, { - "key": "GetSectionHeaderHeight", + "base": "GetSectionHeaderHeight", "details": { "name": "Get Section Header Height", "tooltip": "Gets the height of a header at the specified section. Called when a header's size is needed by a vertical list of variable header sizes, and the “auto calculate size” option is disabled. Used with lists that are divided into sections" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDynamicScrollBoxElementNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDynamicScrollBoxElementNotificationBus.names index 5c0f5a4c26..3978c48472 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDynamicScrollBoxElementNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiDynamicScrollBoxElementNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDynamicScrollBoxElementNotificationBus", + "base": "UiDynamicScrollBoxElementNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -11,7 +11,7 @@ }, "methods": [ { - "key": "OnElementBecomingVisible", + "base": "OnElementBecomingVisible", "details": { "name": "On Element Becoming Visible", "tooltip": "Executes when a child of the scroll box is about to become visible. Use this event to populate the child with data for display" @@ -34,7 +34,7 @@ ] }, { - "key": "OnPrepareElementForSizeCalculation", + "base": "OnPrepareElementForSizeCalculation", "details": { "name": "On Prepare Element For Size Calculation", "tooltip": "Executes when elements have variable sizes and are set to auto calculate. Used with lists that are not divided into sections" @@ -57,7 +57,7 @@ ] }, { - "key": "OnElementInSectionBecomingVisible", + "base": "OnElementInSectionBecomingVisible", "details": { "name": "On Element In Section Becoming Visible", "tooltip": "Executes when an element in a section is about to become visible. Used to populate the element with data for display. Used with lists that are divided into sections" @@ -87,7 +87,7 @@ ] }, { - "key": "OnPrepareElementInSectionForSizeCalculation", + "base": "OnPrepareElementInSectionForSizeCalculation", "details": { "name": "On Prepare Element In Section For Size Calculation", "tooltip": "Executes when elements in sections have variable sizes and are set to auto calculate. Used with lists that are divided into sections" @@ -117,7 +117,7 @@ ] }, { - "key": "OnSectionHeaderBecomingVisible", + "base": "OnSectionHeaderBecomingVisible", "details": { "name": "On Section Header Becoming Visible", "tooltip": "Executes when a header is about to become visible. Used to populate the header with data for display. Used with lists that are divided into sections" @@ -140,7 +140,7 @@ ] }, { - "key": "OnPrepareSectionHeaderForSizeCalculation", + "base": "OnPrepareSectionHeaderForSizeCalculation", "details": { "name": "On Prepare Section Header For Size Calculation", "tooltip": "Executes when headers have variable sizes and are set to auto calculate. Used with lists that are divided into sections" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiFaderNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiFaderNotificationBus.names index b400fcc52b..b6ad05a4e5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiFaderNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiFaderNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiFaderNotificationBus", + "base": "UiFaderNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,21 +10,21 @@ }, "methods": [ { - "key": "OnFadeComplete", + "base": "OnFadeComplete", "details": { "name": "On Fade Complete", "tooltip": "Executes when the fade is done" } }, { - "key": "OnFadeInterrupted", + "base": "OnFadeInterrupted", "details": { "name": "On Fade Interrupted", "tooltip": "Executes when the fade has been interrupted" } }, { - "key": "OnFaderDestroyed", + "base": "OnFaderDestroyed", "details": { "name": "On Fader Destroyed", "tooltip": "Executes when the fader component has been destroyed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiFlipbookAnimationNotificationsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiFlipbookAnimationNotificationsBus.names index 674ccb7ff5..8446eb9b12 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiFlipbookAnimationNotificationsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiFlipbookAnimationNotificationsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiFlipbookAnimationNotificationsBus", + "base": "UiFlipbookAnimationNotificationsBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,21 +10,21 @@ }, "methods": [ { - "key": "OnAnimationStarted", + "base": "OnAnimationStarted", "details": { "name": "On Animation Started", "tooltip": "Executes when the flipbook animation has begun playing" } }, { - "key": "OnAnimationStopped", + "base": "OnAnimationStopped", "details": { "name": "On Animation Stopped", "tooltip": "Executes when the flipbook animation has stopped playing" } }, { - "key": "OnLoopSequenceCompleted", + "base": "OnLoopSequenceCompleted", "details": { "name": "On Loop Sequence Completed", "tooltip": "Executes when the flipbook animation has completed one loop iteration. This triggers only when the \"Loop Type\" of the flipbook animation is configured to anything other than \"None\".\n\nFor \"Linear\" loops, this triggers when \"End Frame\" is displayed.\n\nFor \"Ping Pong\" loops, this triggers when either \"Start Frame\" or \"End Frame\" is displayed (depending on the current loop direction of the loop)" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiInitializationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiInitializationBus.names index 7231f093d9..074d8dd7b9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiInitializationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiInitializationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiInitializationBus", + "base": "UiInitializationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "InGamePostActivate", + "base": "InGamePostActivate", "details": { "name": "In-game Post-activate", "tooltip": "Executes after all loaded UI elements have been activated and their parent and canvas references fixed-up" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiInteractableNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiInteractableNotificationBus.names index 07aec6b83a..635630c1b0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiInteractableNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiInteractableNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiInteractableNotificationBus", + "base": "UiInteractableNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,35 +10,35 @@ }, "methods": [ { - "key": "OnHoverStart", + "base": "OnHoverStart", "details": { "name": "On Hover Start", "tooltip": "Executes when the interactive element starts being hovered" } }, { - "key": "OnHoverEnd", + "base": "OnHoverEnd", "details": { "name": "On Hover End", "tooltip": "Executes when the interactive element ends being hovered" } }, { - "key": "OnPressed", + "base": "OnPressed", "details": { "name": "On Pressed", "tooltip": "Executes when the interactive element has been pressed" } }, { - "key": "OnReleased", + "base": "OnReleased", "details": { "name": "On Released", "tooltip": "Executes when the interactive element has been released" } }, { - "key": "OnReceivedHoverByNavigatingFromDescendant", + "base": "OnReceivedHoverByNavigatingFromDescendant", "details": { "name": "On Received Hover By Navigating From Descendant", "tooltip": "Executes when the interactive element receives the hover by being navigated to from a descendant" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiMarkupButtonNotificationsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiMarkupButtonNotificationsBus.names index 435af88d0a..6d3b96553c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiMarkupButtonNotificationsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiMarkupButtonNotificationsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiMarkupButtonNotificationsBus", + "base": "UiMarkupButtonNotificationsBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnHoverStart", + "base": "OnHoverStart", "details": { "name": "On Hover Start", "tooltip": "Executes when the button has become hovered" @@ -40,7 +40,7 @@ ] }, { - "key": "OnHoverEnd", + "base": "OnHoverEnd", "details": { "name": "On Hover End", "tooltip": "Executes when the button is no longer hovered" @@ -70,7 +70,7 @@ ] }, { - "key": "OnPressed", + "base": "OnPressed", "details": { "name": "On Pressed", "tooltip": "Executes when the button receives a press event" @@ -100,7 +100,7 @@ ] }, { - "key": "OnReleased", + "base": "OnReleased", "details": { "name": "On Released", "tooltip": "Executes when the button receives a release event" @@ -130,7 +130,7 @@ ] }, { - "key": "OnClick", + "base": "OnClick", "details": { "name": "On Click", "tooltip": "Executes when the button is clicked (a release on the button following a press on the button)" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiRadioButtonGroupNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiRadioButtonGroupNotificationBus.names index bf3f1b1bc1..d21eb84512 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiRadioButtonGroupNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiRadioButtonGroupNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiRadioButtonGroupNotificationBus", + "base": "UiRadioButtonGroupNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnRadioButtonGroupStateChange", + "base": "OnRadioButtonGroupStateChange", "details": { "name": "On Radio Button Group State Change", "tooltip": "Executes when the radio button group state has changed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiRadioButtonNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiRadioButtonNotificationBus.names index 4c15af7a33..7219cce771 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiRadioButtonNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiRadioButtonNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiRadioButtonNotificationBus", + "base": "UiRadioButtonNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnRadioButtonStateChange", + "base": "OnRadioButtonStateChange", "details": { "name": "On RadioButton State Change", "tooltip": "Executes when the radio button state has changed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollBoxNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollBoxNotificationBus.names index acad307dbb..9e8a042255 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollBoxNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollBoxNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiScrollBoxNotificationBus", + "base": "UiScrollBoxNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnScrollOffsetChanging", + "base": "OnScrollOffsetChanging", "details": { "name": "On Scroll Offset Changing", "tooltip": "Executes when the scroll offset is changing" @@ -26,7 +26,7 @@ ] }, { - "key": "OnScrollOffsetChanged", + "base": "OnScrollOffsetChanged", "details": { "name": "On Scroll Offset Changed", "tooltip": "Executes when the scroll offset has changed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollableNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollableNotificationBus.names index 5de1e45ad6..7c4092175c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollableNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollableNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiScrollableNotificationBus", + "base": "UiScrollableNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnScrollableValueChanging", + "base": "OnScrollableValueChanging", "details": { "name": "On Scrollable Value Changing", "tooltip": "Executes when the scroll value is changing" @@ -26,7 +26,7 @@ ] }, { - "key": "OnScrollableValueChanged", + "base": "OnScrollableValueChanged", "details": { "name": "On Scrollable Value Changed", "tooltip": "Executes when the scroll value has changed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollerNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollerNotificationBus.names index a12b67ac57..fc5e701451 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollerNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiScrollerNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiScrollerNotificationBus", + "base": "UiScrollerNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnScrollerValueChanging", + "base": "OnScrollerValueChanging", "details": { "name": "On Scroller Value Changing", "tooltip": "Executes when the scroller value is changing" @@ -26,7 +26,7 @@ ] }, { - "key": "OnScrollerValueChanged", + "base": "OnScrollerValueChanged", "details": { "name": "On Scroller Value Changed", "tooltip": "Executes when the scroller value has changed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiSliderNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiSliderNotificationBus.names index 76c9fde12a..770ca8d183 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiSliderNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiSliderNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiSliderNotificationBus", + "base": "UiSliderNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnSliderValueChanging", + "base": "OnSliderValueChanging", "details": { "name": "On Slider Value Changing", "tooltip": "Executes when the slider value is changing" @@ -26,7 +26,7 @@ ] }, { - "key": "OnSliderValueChanged", + "base": "OnSliderValueChanged", "details": { "name": "On Slider Value Changed", "tooltip": "Executes when the slider value has finished changing" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiSpawnerNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiSpawnerNotificationBus.names index 9c3bb637ec..e78828f936 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiSpawnerNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiSpawnerNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiSpawnerNotificationBus", + "base": "UiSpawnerNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnSpawnBegin", + "base": "OnSpawnBegin", "details": { "name": "On Spawn Begin", "tooltip": "Executes when the slice has been spawned, but entities have not yet been activated. \"On Entity Spawned\" events are about to be dispatched" @@ -26,7 +26,7 @@ ] }, { - "key": "OnEntitySpawned", + "base": "OnEntitySpawned", "details": { "name": "On Entity Spawned", "tooltip": "Executes when an entity has been created during a spawn. Called once for each entity created while spawning a slice" @@ -49,7 +49,7 @@ ] }, { - "key": "OnEntitiesSpawned", + "base": "OnEntitiesSpawned", "details": { "name": "On Entities Spawned", "tooltip": "Executes when all entities have been created during a spawn.\n\nCalled only once for each spawn request. Called after the \"On Entity Spawned\" calls and before the \"On Spawn End\" call" @@ -72,7 +72,7 @@ ] }, { - "key": "OnTopLevelEntitiesSpawned", + "base": "OnTopLevelEntitiesSpawned", "details": { "name": "On Top Level Entities Spawned", "tooltip": "Executes when all top-level entities have been created during the spawn.\n\nTop-level entities are entities that do not have any parent within the slice. Typically, there is only one top-level entity for each slice.\n\nCalled only once for each spawn request. Called after the \"On Entity Spawned\" calls and before the \"On Spawn End\" call" @@ -95,7 +95,7 @@ ] }, { - "key": "OnSpawnEnd", + "base": "OnSpawnEnd", "details": { "name": "On Spawn End", "tooltip": "Executes when a slice has been spawned. Called once for each spawn request. All \"On Entity Spawned\" events have been dispatched" @@ -111,7 +111,7 @@ ] }, { - "key": "OnSpawnFailed", + "base": "OnSpawnFailed", "details": { "name": "On Spawn Failed", "tooltip": "Executes when a spawn request has failed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiTextInputNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiTextInputNotificationBus.names index 4bc897df5d..b5ad552ef1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiTextInputNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/UiTextInputNotificationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTextInputNotificationBus", + "base": "UiTextInputNotificationBus", "context": "EBusHandler", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "OnTextInputChange", + "base": "OnTextInputChange", "details": { "name": "On Text Input Change", "tooltip": "Executes when a character is added, removed, or changed" @@ -26,7 +26,7 @@ ] }, { - "key": "OnTextInputEndEdit", + "base": "OnTextInputEndEdit", "details": { "name": "On Text Input End Edit", "tooltip": "Executes when edit of text is completed" @@ -42,7 +42,7 @@ ] }, { - "key": "OnTextInputEnter", + "base": "OnTextInputEnter", "details": { "name": "On Text Input Enter", "tooltip": "Executes when \"Enter\" is pressed on the keyboard" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/VariableNotification.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/VariableNotification.names index 486694b4bb..3ef35b24b7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/VariableNotification.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/VariableNotification.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "VariableNotification", + "base": "VariableNotification", "context": "EBusHandler", "variant": "", "details": { @@ -11,7 +11,7 @@ }, "methods": [ { - "key": "OnVariableValueChanged", + "base": "OnVariableValueChanged", "details": { "name": "On Variable Value Changed" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ViewPaneCallbackBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ViewPaneCallbackBus.names index b77d3caf75..45bbf4cbc9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ViewPaneCallbackBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/ViewPaneCallbackBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ViewPaneCallbackBus", + "base": "ViewPaneCallbackBus", "context": "EBusHandler", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreateViewPaneWidget", + "base": "CreateViewPaneWidget", "details": { "name": "CreateViewPaneWidget" }, diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names index 9ba441a6c8..3b01bcc40b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSCognitoAuthorizationRequestBus", + "base": "AWSCognitoAuthorizationRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "Reset", + "base": "Reset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Reset" @@ -24,7 +24,7 @@ } }, { - "key": "GetIdentityId", + "base": "GetIdentityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetIdentityId" @@ -46,7 +46,7 @@ ] }, { - "key": "HasPersistedLogins", + "base": "HasPersistedLogins", "entry": { "name": "In", "tooltip": "When signaled, this will invoke HasPersistedLogins" @@ -68,7 +68,7 @@ ] }, { - "key": "Initialize", + "base": "Initialize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Initialize" @@ -90,7 +90,7 @@ ] }, { - "key": "RequestAWSCredentialsAsync", + "base": "RequestAWSCredentialsAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RequestAWSCredentialsAsync" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names index 932378a747..1c1cab22fd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSCognitoUserManagementRequestBus", + "base": "AWSCognitoUserManagementRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "EnableMFAAsync", + "base": "EnableMFAAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Enable MFA Async" @@ -33,7 +33,7 @@ ] }, { - "key": "ConfirmSignUpAsync", + "base": "ConfirmSignUpAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Confirm Sign Up Async" @@ -63,7 +63,7 @@ ] }, { - "key": "PhoneSignUpAsync", + "base": "PhoneSignUpAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Phone Sign Up Async" @@ -100,7 +100,7 @@ ] }, { - "key": "EmailSignUpAsync", + "base": "EmailSignUpAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Email Sign Up Async" @@ -137,7 +137,7 @@ ] }, { - "key": "ConfirmForgotPasswordAsync", + "base": "ConfirmForgotPasswordAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Confirm Forgot Password Async" @@ -174,7 +174,7 @@ ] }, { - "key": "Initialize", + "base": "Initialize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Initialize" @@ -196,7 +196,7 @@ ] }, { - "key": "ForgotPasswordAsync", + "base": "ForgotPasswordAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Forgot Password Async" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSMetricsRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSMetricsRequestBus.names index b725fc3de1..99df5e2d5e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSMetricsRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSMetricsRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSMetricsRequestBus", + "base": "AWSMetricsRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SubmitMetrics", + "base": "SubmitMetrics", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SubmitMetrics" @@ -62,7 +62,7 @@ ] }, { - "key": "FlushMetrics", + "base": "FlushMetrics", "entry": { "name": "In", "tooltip": "When signaled, this will invoke FlushMetrics" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSResourceMappingRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSResourceMappingRequestBus.names index f7ed1d7591..4bda3ef0ff 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSResourceMappingRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSResourceMappingRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AWSResourceMappingRequestBus", + "base": "AWSResourceMappingRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetResourceNameId", + "base": "GetResourceNameId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Resource Name Id" @@ -41,7 +41,7 @@ ] }, { - "key": "GetResourceRegion", + "base": "GetResourceRegion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Resource Region" @@ -72,7 +72,7 @@ ] }, { - "key": "GetDefaultRegion", + "base": "GetDefaultRegion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Default Region" @@ -94,7 +94,7 @@ ] }, { - "key": "GetDefaultAccountId", + "base": "GetDefaultAccountId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Default Account Id" @@ -116,7 +116,7 @@ ] }, { - "key": "GetResourceAccountId", + "base": "GetResourceAccountId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Resource Account Id" @@ -147,7 +147,7 @@ ] }, { - "key": "GetResourceType", + "base": "GetResourceType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Resource Type" @@ -178,7 +178,7 @@ ] }, { - "key": "ReloadConfigFile", + "base": "ReloadConfigFile", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Reload Config File" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ActorComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ActorComponentRequestBus.names index 5deea3567a..d40cfe2045 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ActorComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ActorComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ActorComponentRequestBus", + "base": "ActorComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetRenderCharacter", + "base": "GetRenderCharacter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Render Character" @@ -32,7 +32,7 @@ ] }, { - "key": "DetachFromEntity", + "base": "DetachFromEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Detach From Entity" @@ -46,7 +46,7 @@ } }, { - "key": "GetRenderActorVisible", + "base": "GetRenderActorVisible", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Render Actor Visible" @@ -68,7 +68,7 @@ ] }, { - "key": "AttachToEntity", + "base": "AttachToEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Attach To Entity" @@ -99,7 +99,7 @@ ] }, { - "key": "SetRenderCharacter", + "base": "SetRenderCharacter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Render Character" @@ -121,7 +121,7 @@ ] }, { - "key": "GetJointTransform", + "base": "GetJointTransform", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Joint Transform" @@ -158,7 +158,7 @@ ] }, { - "key": "GetJointIndexByName", + "base": "GetJointIndexByName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Joint Index By Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimAudioComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimAudioComponentRequestBus.names index 3620304e48..25180e8ae7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimAudioComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimAudioComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AnimAudioComponentRequestBus", + "base": "AnimAudioComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "AddTriggerEvent", + "base": "AddTriggerEvent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Add Trigger Event" @@ -45,7 +45,7 @@ ] }, { - "key": "ClearTriggerEvents", + "base": "ClearTriggerEvents", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Clear Trigger Events" @@ -60,7 +60,7 @@ } }, { - "key": "RemoveTriggerEvent", + "base": "RemoveTriggerEvent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Remove Trigger Event" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimGraphComponentNetworkRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimGraphComponentNetworkRequestBus.names index 177eded8e5..865335410e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimGraphComponentNetworkRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimGraphComponentNetworkRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AnimGraphComponentNetworkRequestBus", + "base": "AnimGraphComponentNetworkRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetActiveStates", + "base": "GetActiveStates", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Active States" @@ -32,7 +32,7 @@ ] }, { - "key": "CreateSnapshot", + "base": "CreateSnapshot", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Create Snapshot" @@ -54,7 +54,7 @@ ] }, { - "key": "SetActiveStates", + "base": "SetActiveStates", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetActiveStates" @@ -76,7 +76,7 @@ ] }, { - "key": "IsAssetReady", + "base": "IsAssetReady", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Asset Ready" @@ -98,7 +98,7 @@ ] }, { - "key": "HasSnapshot", + "base": "HasSnapshot", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Has Snapshot" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimGraphComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimGraphComponentRequestBus.names index 7e0ea4f5fa..976c253f89 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimGraphComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AnimGraphComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AnimGraphComponentRequestBus", + "base": "AnimGraphComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetVisualizeEnabled", + "base": "GetVisualizeEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Visualize Enabled" @@ -32,7 +32,7 @@ ] }, { - "key": "SetNamedParameterRotation", + "base": "SetNamedParameterRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Named Parameter Rotation" @@ -60,7 +60,7 @@ ] }, { - "key": "SetParameterString", + "base": "SetParameterString", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parameter String" @@ -88,7 +88,7 @@ ] }, { - "key": "GetNamedParameterString", + "base": "GetNamedParameterString", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Named Parameter String" @@ -118,7 +118,7 @@ ] }, { - "key": "GetNamedParameterVector2", + "base": "GetNamedParameterVector2", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Named Parameter Vector2" @@ -148,7 +148,7 @@ ] }, { - "key": "GetParameterFloat", + "base": "GetParameterFloat", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parameter Float" @@ -178,7 +178,7 @@ ] }, { - "key": "SetParameterRotation", + "base": "SetParameterRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parameter Rotation" @@ -206,7 +206,7 @@ ] }, { - "key": "GetNamedParameterFloat", + "base": "GetNamedParameterFloat", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Named Parameter Float" @@ -236,7 +236,7 @@ ] }, { - "key": "SetParameterBool", + "base": "SetParameterBool", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parameter Bool" @@ -264,7 +264,7 @@ ] }, { - "key": "FindParameterName", + "base": "FindParameterName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Parameter Name" @@ -294,7 +294,7 @@ ] }, { - "key": "GetNamedParameterBool", + "base": "GetNamedParameterBool", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Named Parameter Bool" @@ -324,7 +324,7 @@ ] }, { - "key": "SetParameterFloat", + "base": "SetParameterFloat", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parameter Float" @@ -352,7 +352,7 @@ ] }, { - "key": "GetParameterVector2", + "base": "GetParameterVector2", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parameter Vector2" @@ -382,7 +382,7 @@ ] }, { - "key": "GetParameterBool", + "base": "GetParameterBool", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parameter Bool" @@ -412,7 +412,7 @@ ] }, { - "key": "SetNamedParameterVector3", + "base": "SetNamedParameterVector3", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Named Parameter Vector3" @@ -440,7 +440,7 @@ ] }, { - "key": "FindParameterIndex", + "base": "FindParameterIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Parameter Index" @@ -470,7 +470,7 @@ ] }, { - "key": "SetNamedParameterString", + "base": "SetNamedParameterString", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Named Parameter String" @@ -498,7 +498,7 @@ ] }, { - "key": "SetParameterVector3", + "base": "SetParameterVector3", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parameter Vector3" @@ -526,7 +526,7 @@ ] }, { - "key": "GetParameterVector3", + "base": "GetParameterVector3", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parameter Vector3" @@ -556,7 +556,7 @@ ] }, { - "key": "SyncAnimGraph", + "base": "SyncAnimGraph", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Sync Anim Graph" @@ -579,7 +579,7 @@ ] }, { - "key": "SetParameterRotationEuler", + "base": "SetParameterRotationEuler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parameter Rotation Euler" @@ -607,7 +607,7 @@ ] }, { - "key": "GetParameterRotationEuler", + "base": "GetParameterRotationEuler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parameter Rotation Euler" @@ -637,7 +637,7 @@ ] }, { - "key": "GetParameterRotation", + "base": "GetParameterRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parameter Rotation" @@ -667,7 +667,7 @@ ] }, { - "key": "GetNamedParameterRotationEuler", + "base": "GetNamedParameterRotationEuler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Named Parameter Rotation Euler" @@ -697,7 +697,7 @@ ] }, { - "key": "DesyncAnimGraph", + "base": "DesyncAnimGraph", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Desync Anim Graph" @@ -720,7 +720,7 @@ ] }, { - "key": "SetNamedParameterRotationEuler", + "base": "SetNamedParameterRotationEuler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Named Parameter Rotation Euler" @@ -748,7 +748,7 @@ ] }, { - "key": "SetParameterVector2", + "base": "SetParameterVector2", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parameter Vector2" @@ -776,7 +776,7 @@ ] }, { - "key": "GetNamedParameterRotation", + "base": "GetNamedParameterRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Named Parameter Rotation" @@ -806,7 +806,7 @@ ] }, { - "key": "SetNamedParameterBool", + "base": "SetNamedParameterBool", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Named Parameter Bool" @@ -834,7 +834,7 @@ ] }, { - "key": "SetVisualizeEnabled", + "base": "SetVisualizeEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Visualize Enabled" @@ -856,7 +856,7 @@ ] }, { - "key": "SetNamedParameterFloat", + "base": "SetNamedParameterFloat", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Named Parameter Float" @@ -884,7 +884,7 @@ ] }, { - "key": "SetNamedParameterVector2", + "base": "SetNamedParameterVector2", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Named Parameter Vector2" @@ -912,7 +912,7 @@ ] }, { - "key": "GetNamedParameterVector3", + "base": "GetNamedParameterVector3", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Named Parameter Vector3" @@ -942,7 +942,7 @@ ] }, { - "key": "GetParameterString", + "base": "GetParameterString", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parameter String" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ArcBallControllerRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ArcBallControllerRequestBus.names index 9c9ef0b882..293c391360 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ArcBallControllerRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ArcBallControllerRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ArcBallControllerRequestBus", + "base": "ArcBallControllerRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetPan", + "base": "GetPan", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPan" @@ -33,7 +33,7 @@ ] }, { - "key": "GetCenter", + "base": "GetCenter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCenter" @@ -56,7 +56,7 @@ ] }, { - "key": "SetZoomingSensitivity", + "base": "SetZoomingSensitivity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetZoomingSensitivity" @@ -79,7 +79,7 @@ ] }, { - "key": "GetPitch", + "base": "GetPitch", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPitch" @@ -102,7 +102,7 @@ ] }, { - "key": "SetPanningSensitivity", + "base": "SetPanningSensitivity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPanningSensitivity" @@ -125,7 +125,7 @@ ] }, { - "key": "GetZoomingSensitivity", + "base": "GetZoomingSensitivity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetZoomingSensitivity" @@ -148,7 +148,7 @@ ] }, { - "key": "SetHeading", + "base": "SetHeading", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetHeading" @@ -171,7 +171,7 @@ ] }, { - "key": "GetMaxDistance", + "base": "GetMaxDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetMaxDistance" @@ -194,7 +194,7 @@ ] }, { - "key": "SetDistance", + "base": "SetDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetDistance" @@ -217,7 +217,7 @@ ] }, { - "key": "SetMinDistance", + "base": "SetMinDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetMinDistance" @@ -240,7 +240,7 @@ ] }, { - "key": "SetMaxDistance", + "base": "SetMaxDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetMaxDistance" @@ -263,7 +263,7 @@ ] }, { - "key": "GetMinDistance", + "base": "GetMinDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetMinDistance" @@ -286,7 +286,7 @@ ] }, { - "key": "GetHeading", + "base": "GetHeading", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetHeading" @@ -309,7 +309,7 @@ ] }, { - "key": "GetPanningSensitivity", + "base": "GetPanningSensitivity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPanningSensitivity" @@ -332,7 +332,7 @@ ] }, { - "key": "SetCenter", + "base": "SetCenter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCenter" @@ -355,7 +355,7 @@ ] }, { - "key": "SetPan", + "base": "SetPan", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPan" @@ -378,7 +378,7 @@ ] }, { - "key": "SetPitch", + "base": "SetPitch", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPitch" @@ -401,7 +401,7 @@ ] }, { - "key": "GetDistance", + "base": "GetDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetDistance" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AreaLightRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AreaLightRequestBus.names index 3b75eef182..d57b9b6ffe 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AreaLightRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AreaLightRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AreaLightRequestBus", + "base": "AreaLightRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetFilteringSampleCount", + "base": "SetFilteringSampleCount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Filtering Sample Count" @@ -33,7 +33,7 @@ ] }, { - "key": "SetIntensity", + "base": "SetIntensity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Intensity" @@ -56,7 +56,7 @@ ] }, { - "key": "SetEsmExponent", + "base": "SetEsmExponent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Esm Exponent" @@ -79,7 +79,7 @@ ] }, { - "key": "GetOuterShutterAngle", + "base": "GetOuterShutterAngle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Outer Shutter Angle" @@ -102,7 +102,7 @@ ] }, { - "key": "GetInnerShutterAngle", + "base": "GetInnerShutterAngle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Inner Shutter Angle" @@ -125,7 +125,7 @@ ] }, { - "key": "SetColor", + "base": "SetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Color" @@ -148,7 +148,7 @@ ] }, { - "key": "SetShadowBias", + "base": "SetShadowBias", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Shadow Bias" @@ -170,7 +170,7 @@ ] }, { - "key": "SetShadowFilterMethod", + "base": "SetShadowFilterMethod", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Shadow Filter Method" @@ -194,7 +194,7 @@ ] }, { - "key": "GetEsmExponent", + "base": "GetEsmExponent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Esm Exponent" @@ -217,7 +217,7 @@ ] }, { - "key": "SetInnerShutterAngle", + "base": "SetInnerShutterAngle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Inner Shutter Angle" @@ -240,7 +240,7 @@ ] }, { - "key": "SetEnableShadow", + "base": "SetEnableShadow", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Enable Shadow" @@ -263,7 +263,7 @@ ] }, { - "key": "SetUseFastApproximation", + "base": "SetUseFastApproximation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Use Fast Approximation" @@ -286,7 +286,7 @@ ] }, { - "key": "GetUseFastApproximation", + "base": "GetUseFastApproximation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Use Fast Approximation" @@ -309,7 +309,7 @@ ] }, { - "key": "GetFilteringSampleCount", + "base": "GetFilteringSampleCount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Filtering Sample Count" @@ -332,7 +332,7 @@ ] }, { - "key": "GetEnableShadow", + "base": "GetEnableShadow", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Enable Shadow" @@ -355,7 +355,7 @@ ] }, { - "key": "GetShadowFilterMethod", + "base": "GetShadowFilterMethod", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Shadow Filter Method" @@ -379,7 +379,7 @@ ] }, { - "key": "GetIntensityMode", + "base": "GetIntensityMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Intensity Mode" @@ -403,7 +403,7 @@ ] }, { - "key": "GetShadowBias", + "base": "GetShadowBias", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Shadow Bias" @@ -426,7 +426,7 @@ ] }, { - "key": "SetAttenuationRadiusMode", + "base": "SetAttenuationRadiusMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Attenuation Radius Mode" @@ -451,7 +451,7 @@ ] }, { - "key": "SetEmitsLightBothDirections", + "base": "SetEmitsLightBothDirections", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Emits Light Both Directions" @@ -473,7 +473,7 @@ ] }, { - "key": "SetEnableShutters", + "base": "SetEnableShutters", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Enable Shutters" @@ -495,7 +495,7 @@ ] }, { - "key": "GetShadowmapMaxSize", + "base": "GetShadowmapMaxSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Shadowmap Max Size" @@ -518,7 +518,7 @@ ] }, { - "key": "GetEmitsLightBothDirections", + "base": "GetEmitsLightBothDirections", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Emits Light Both Directions" @@ -540,7 +540,7 @@ ] }, { - "key": "SetOuterShutterAngle", + "base": "SetOuterShutterAngle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Outer Shutter Angle" @@ -563,7 +563,7 @@ ] }, { - "key": "SetAttenuationRadius", + "base": "SetAttenuationRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Attenuation Radius" @@ -586,7 +586,7 @@ ] }, { - "key": "GetAttenuationRadius", + "base": "GetAttenuationRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Attenuation Radius" @@ -609,7 +609,7 @@ ] }, { - "key": "GetEnableShutters", + "base": "GetEnableShutters", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Enable Shutters" @@ -632,7 +632,7 @@ ] }, { - "key": "GetColor", + "base": "GetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Color" @@ -654,7 +654,7 @@ ] }, { - "key": "ConvertToIntensityMode", + "base": "ConvertToIntensityMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Convert To Intensity Mode" @@ -678,7 +678,7 @@ ] }, { - "key": "SetShadowmapMaxSize", + "base": "SetShadowmapMaxSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Shadowmap Max Size" @@ -700,7 +700,7 @@ ] }, { - "key": "GetIntensity", + "base": "GetIntensity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Intensity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AreaSystemRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AreaSystemRequestBus.names index 0986961990..fd994b7663 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AreaSystemRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AreaSystemRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AreaSystemRequestBus", + "base": "AreaSystemRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetInstanceCountInAabb", + "base": "GetInstanceCountInAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Instance Count In AABB" @@ -40,7 +40,7 @@ ] }, { - "key": "GetInstancesInAabb", + "base": "GetInstancesInAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Instances In AABB" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AssetCollectionAsyncLoaderTestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AssetCollectionAsyncLoaderTestBus.names index c6af4aa7fb..98a242a478 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AssetCollectionAsyncLoaderTestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AssetCollectionAsyncLoaderTestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AssetCollectionAsyncLoaderTestBus", + "base": "AssetCollectionAsyncLoaderTestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetPendingAssetsList", + "base": "GetPendingAssetsList", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPendingAssetsList" @@ -31,7 +31,7 @@ ] }, { - "key": "GetCountOfPendingAssets", + "base": "GetCountOfPendingAssets", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCountOfPendingAssets" @@ -53,7 +53,7 @@ ] }, { - "key": "ValidateAssetWasLoaded", + "base": "ValidateAssetWasLoaded", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ValidateAssetWasLoaded" @@ -83,7 +83,7 @@ ] }, { - "key": "CancelLoadingAssets", + "base": "CancelLoadingAssets", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CancelLoadingAssets" @@ -97,7 +97,7 @@ } }, { - "key": "StartLoadingAssetsFromAssetList", + "base": "StartLoadingAssetsFromAssetList", "entry": { "name": "In", "tooltip": "When signaled, this will invoke StartLoadingAssetsFromAssetList" @@ -127,7 +127,7 @@ ] }, { - "key": "StartLoadingAssetsFromJsonFile", + "base": "StartLoadingAssetsFromJsonFile", "entry": { "name": "In", "tooltip": "When signaled, this will invoke StartLoadingAssetsFromJsonFile" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AssetEditorRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AssetEditorRequestBus.names index 958a9e4dba..5c93fe893d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AssetEditorRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AssetEditorRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AssetEditorRequestBus", + "base": "AssetEditorRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreateNewGraph", + "base": "CreateNewGraph", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CreateNewGraph" @@ -32,7 +32,7 @@ ] }, { - "key": "ContainsGraph", + "base": "ContainsGraph", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ContainsGraph" @@ -63,7 +63,7 @@ ] }, { - "key": "CloseGraph", + "base": "CloseGraph", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CloseGraph" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsDocumentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsDocumentRequestBus.names index 40ecc8261c..13e66d2420 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsDocumentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsDocumentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AtomToolsDocumentRequestBus", + "base": "AtomToolsDocumentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CanRedo", + "base": "CanRedo", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Can Redo" @@ -32,7 +32,7 @@ ] }, { - "key": "SaveAsChild", + "base": "SaveAsChild", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Save As Child" @@ -62,7 +62,7 @@ ] }, { - "key": "Reopen", + "base": "Reopen", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Reopen" @@ -84,7 +84,7 @@ ] }, { - "key": "Save", + "base": "Save", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Save" @@ -106,7 +106,7 @@ ] }, { - "key": "IsOpen", + "base": "IsOpen", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Open" @@ -128,7 +128,7 @@ ] }, { - "key": "Undo", + "base": "Undo", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Undo" @@ -150,7 +150,7 @@ ] }, { - "key": "Open", + "base": "Open", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Open" @@ -180,7 +180,7 @@ ] }, { - "key": "CanUndo", + "base": "CanUndo", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Can Undo" @@ -202,7 +202,7 @@ ] }, { - "key": "SetPropertyValue", + "base": "SetPropertyValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Property Value" @@ -230,7 +230,7 @@ ] }, { - "key": "SaveAsCopy", + "base": "SaveAsCopy", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Save As Copy" @@ -260,7 +260,7 @@ ] }, { - "key": "BeginEdit", + "base": "BeginEdit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Begin Edit" @@ -282,7 +282,7 @@ ] }, { - "key": "GetPropertyValue", + "base": "GetPropertyValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Property Value" @@ -312,7 +312,7 @@ ] }, { - "key": "Close", + "base": "Close", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Close" @@ -334,7 +334,7 @@ ] }, { - "key": "IsModified", + "base": "IsModified", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsModified" @@ -356,7 +356,7 @@ ] }, { - "key": "EndEdit", + "base": "EndEdit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke End Edit" @@ -378,7 +378,7 @@ ] }, { - "key": "GetAbsolutePath", + "base": "GetAbsolutePath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Absolute Path" @@ -400,7 +400,7 @@ ] }, { - "key": "GetRelativePath", + "base": "GetRelativePath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Relative Path" @@ -422,7 +422,7 @@ ] }, { - "key": "IsSavable", + "base": "IsSavable", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Savable" @@ -444,7 +444,7 @@ ] }, { - "key": "Redo", + "base": "Redo", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Redo" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsDocumentSystemRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsDocumentSystemRequestBus.names index 9b65065453..020f951c51 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsDocumentSystemRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsDocumentSystemRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AtomToolsDocumentSystemRequestBus", + "base": "AtomToolsDocumentSystemRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SaveDocument", + "base": "SaveDocument", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Save Document" @@ -40,7 +40,7 @@ ] }, { - "key": "SaveDocumentAsChild", + "base": "SaveDocumentAsChild", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Save Document As Child" @@ -76,7 +76,7 @@ ] }, { - "key": "OpenDocument", + "base": "OpenDocument", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Open Document" @@ -106,7 +106,7 @@ ] }, { - "key": "CreateDocumentFromFile", + "base": "CreateDocumentFromFile", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Create Document From File" @@ -142,7 +142,7 @@ ] }, { - "key": "CloseDocument", + "base": "CloseDocument", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Close Document" @@ -172,7 +172,7 @@ ] }, { - "key": "CloseAllDocuments", + "base": "CloseAllDocuments", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Close All Documents" @@ -194,7 +194,7 @@ ] }, { - "key": "CloseAllDocumentsExcept", + "base": "CloseAllDocumentsExcept", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Close All Documents Except" @@ -224,7 +224,7 @@ ] }, { - "key": "CreateDocument", + "base": "CreateDocument", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Create Document" @@ -246,7 +246,7 @@ ] }, { - "key": "DestroyDocument", + "base": "DestroyDocument", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Destroy Document" @@ -276,7 +276,7 @@ ] }, { - "key": "SaveDocumentAsCopy", + "base": "SaveDocumentAsCopy", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Save Document As Copy" @@ -312,7 +312,7 @@ ] }, { - "key": "SaveAllDocuments", + "base": "SaveAllDocuments", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Save All Documents" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsMainWindowFactoryRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsMainWindowFactoryRequestBus.names index 9d074c4224..bbb141f329 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsMainWindowFactoryRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsMainWindowFactoryRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AtomToolsMainWindowFactoryRequestBus", + "base": "AtomToolsMainWindowFactoryRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateMainWindow", + "base": "CreateMainWindow", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Create Main Window" @@ -24,7 +24,7 @@ } }, { - "key": "DestroyMainWindow", + "base": "DestroyMainWindow", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Destroy Main Window" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsMainWindowRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsMainWindowRequestBus.names index cb6fa04754..741afa30af 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsMainWindowRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AtomToolsMainWindowRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AtomToolsMainWindowRequestBus", + "base": "AtomToolsMainWindowRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "UnlockViewportRenderTargetSize", + "base": "UnlockViewportRenderTargetSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Unlock Viewport Render Target Size" @@ -24,7 +24,7 @@ } }, { - "key": "GetDockWidgetNames", + "base": "GetDockWidgetNames", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Dock Widget Names" @@ -46,7 +46,7 @@ ] }, { - "key": "ResizeViewportRenderTarget", + "base": "ResizeViewportRenderTarget", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Resize Viewport Render Target" @@ -74,7 +74,7 @@ ] }, { - "key": "SetDockWidgetVisible", + "base": "SetDockWidgetVisible", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Dock Widget Visible" @@ -102,7 +102,7 @@ ] }, { - "key": "IsDockWidgetVisible", + "base": "IsDockWidgetVisible", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Dock Widget Visible" @@ -132,7 +132,7 @@ ] }, { - "key": "LockViewportRenderTargetSize", + "base": "LockViewportRenderTargetSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Lock Viewport Render Target Size" @@ -160,7 +160,7 @@ ] }, { - "key": "ActivateWindow", + "base": "ActivateWindow", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Activate Window" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AttachmentComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AttachmentComponentRequestBus.names index 416c0dfae3..5e097988a6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AttachmentComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AttachmentComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AttachmentComponentRequestBus", + "base": "AttachmentComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "Attach", + "base": "Attach", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Attach" @@ -45,7 +45,7 @@ ] }, { - "key": "Detach", + "base": "Detach", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Detach" @@ -59,7 +59,7 @@ } }, { - "key": "SetAttachmentOffset", + "base": "SetAttachmentOffset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAttachmentOffset" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioEnvironmentComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioEnvironmentComponentRequestBus.names index 641d11c99c..6d5ba9f6a2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioEnvironmentComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioEnvironmentComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AudioEnvironmentComponentRequestBus", + "base": "AudioEnvironmentComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetAmount", + "base": "SetAmount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Amount" @@ -33,7 +33,7 @@ ] }, { - "key": "SetEnvironmentAmount", + "base": "SetEnvironmentAmount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Environment Amount" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioListenerComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioListenerComponentRequestBus.names index c08b9854d9..4f1afdb06d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioListenerComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioListenerComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AudioListenerComponentRequestBus", + "base": "AudioListenerComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetRotationEntity", + "base": "SetRotationEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Rotation Entity" @@ -34,7 +34,7 @@ ] }, { - "key": "SetPositionEntity", + "base": "SetPositionEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Position Entity" @@ -58,7 +58,7 @@ ] }, { - "key": "SetFullTransformEntity", + "base": "SetFullTransformEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Full Transform Entity" @@ -82,7 +82,7 @@ ] }, { - "key": "SetListenerEnabled", + "base": "SetListenerEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Listener Enabled" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioPreloadComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioPreloadComponentRequestBus.names index beb17272ec..f2ce00d72e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioPreloadComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioPreloadComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AudioPreloadComponentRequestBus", + "base": "AudioPreloadComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "IsLoaded", + "base": "IsLoaded", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Loaded" @@ -40,7 +40,7 @@ ] }, { - "key": "Unload", + "base": "Unload", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Unload" @@ -54,7 +54,7 @@ } }, { - "key": "UnloadPreload", + "base": "UnloadPreload", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Unload Preload" @@ -76,7 +76,7 @@ ] }, { - "key": "Load", + "base": "Load", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Load" @@ -90,7 +90,7 @@ } }, { - "key": "LoadPreload", + "base": "LoadPreload", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Load Preload" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioRtpcComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioRtpcComponentRequestBus.names index 6ea496f6b1..2053611961 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioRtpcComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioRtpcComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AudioRtpcComponentRequestBus", + "base": "AudioRtpcComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetValue", + "base": "SetValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Value" @@ -33,7 +33,7 @@ ] }, { - "key": "SetRtpcValue", + "base": "SetRtpcValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set RTPC Value" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioSwitchComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioSwitchComponentRequestBus.names index cb2ca6db64..87d263ac96 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioSwitchComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioSwitchComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AudioSwitchComponentRequestBus", + "base": "AudioSwitchComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetState", + "base": "SetState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set State" @@ -34,7 +34,7 @@ ] }, { - "key": "SetSwitchState", + "base": "SetSwitchState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Switch State" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioSystemComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioSystemComponentRequestBus.names index 3409c106d3..526eada299 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioSystemComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioSystemComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AudioSystemComponentRequestBus", + "base": "AudioSystemComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "LevelUnloadAudio", + "base": "LevelUnloadAudio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke LevelUnloadAudio" @@ -24,7 +24,7 @@ } }, { - "key": "LevelLoadAudio", + "base": "LevelLoadAudio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke LevelLoadAudio" @@ -46,7 +46,7 @@ ] }, { - "key": "GlobalKillAudioTrigger", + "base": "GlobalKillAudioTrigger", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Global Kill Audio Trigger" @@ -75,7 +75,7 @@ ] }, { - "key": "GlobalSetAudioRtpc", + "base": "GlobalSetAudioRtpc", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Global Set Audio RTPC" @@ -103,7 +103,7 @@ ] }, { - "key": "GlobalSetAudioSwitchState", + "base": "GlobalSetAudioSwitchState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Global Set Audio Switch State" @@ -131,7 +131,7 @@ ] }, { - "key": "GlobalRefreshAudio", + "base": "GlobalRefreshAudio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GlobalRefreshAudio" @@ -153,7 +153,7 @@ ] }, { - "key": "GlobalMuteAudio", + "base": "GlobalMuteAudio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Global Mute Audio" @@ -167,7 +167,7 @@ } }, { - "key": "GlobalExecuteAudioTrigger", + "base": "GlobalExecuteAudioTrigger", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Global Execute Audio Trigger" @@ -196,7 +196,7 @@ ] }, { - "key": "GlobalStopAllSounds", + "base": "GlobalStopAllSounds", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Global Stop All Sounds" @@ -210,7 +210,7 @@ } }, { - "key": "GlobalUnmuteAudio", + "base": "GlobalUnmuteAudio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Global Unmute Audio" @@ -224,7 +224,7 @@ } }, { - "key": "GlobalResetAudioRtpcs", + "base": "GlobalResetAudioRtpcs", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Global Reset Audio RTPCs" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioTriggerComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioTriggerComponentRequestBus.names index 111c2d328c..3f584ca463 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioTriggerComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AudioTriggerComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AudioTriggerComponentRequestBus", + "base": "AudioTriggerComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetObstructionType", + "base": "SetObstructionType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Obstruction Type" @@ -33,7 +33,7 @@ ] }, { - "key": "KillAllTriggers", + "base": "KillAllTriggers", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Kill All Triggers" @@ -48,7 +48,7 @@ } }, { - "key": "ExecuteTrigger", + "base": "ExecuteTrigger", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Execute Trigger" @@ -72,7 +72,7 @@ ] }, { - "key": "SetMovesWithEntity", + "base": "SetMovesWithEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Moves With Entity" @@ -96,7 +96,7 @@ ] }, { - "key": "Stop", + "base": "Stop", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Stop" @@ -111,7 +111,7 @@ } }, { - "key": "Play", + "base": "Play", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Play" @@ -126,7 +126,7 @@ } }, { - "key": "KillTrigger", + "base": "KillTrigger", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Kill Trigger" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names index 237d70340b..c0db453e2e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "AuthenticationProviderRequestBus", + "base": "AuthenticationProviderRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SignOut", + "base": "SignOut", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SignOut" @@ -42,7 +42,7 @@ ] }, { - "key": "DeviceCodeGrantConfirmSignInAsync", + "base": "DeviceCodeGrantConfirmSignInAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Device Code Grant Confirm Sign In Async" @@ -65,7 +65,7 @@ ] }, { - "key": "DeviceCodeGrantSignInAsync", + "base": "DeviceCodeGrantSignInAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Device Code Grant Sign In Async" @@ -88,7 +88,7 @@ ] }, { - "key": "PasswordGrantMultiFactorSignInAsync", + "base": "PasswordGrantMultiFactorSignInAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Password Grant Multi Factor Sign In Async" @@ -125,7 +125,7 @@ ] }, { - "key": "GetAuthenticationTokens", + "base": "GetAuthenticationTokens", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Authentication Tokens" @@ -156,7 +156,7 @@ ] }, { - "key": "GetTokensWithRefreshAsync", + "base": "GetTokensWithRefreshAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Tokens With Refresh Async" @@ -179,7 +179,7 @@ ] }, { - "key": "IsSignedIn", + "base": "IsSignedIn", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Signed In" @@ -210,7 +210,7 @@ ] }, { - "key": "PasswordGrantSingleFactorSignInAsync", + "base": "PasswordGrantSingleFactorSignInAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Password GrantSingle Factor Sign In Async" @@ -247,7 +247,7 @@ ] }, { - "key": "RefreshTokensAsync", + "base": "RefreshTokensAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Refresh Tokens Async" @@ -270,7 +270,7 @@ ] }, { - "key": "Initialize", + "base": "Initialize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Initialize" @@ -300,7 +300,7 @@ ] }, { - "key": "PasswordGrantMultiFactorConfirmSignInAsync", + "base": "PasswordGrantMultiFactorConfirmSignInAsync", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Password Grant Multi Factor Confirm Sign In Async" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BlastFamilyComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BlastFamilyComponentRequestBus.names index f4c2192375..3c71a6e04c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BlastFamilyComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BlastFamilyComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "BlastFamilyComponentRequestBus", + "base": "BlastFamilyComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Get Actors Data", + "base": "Get Actors Data", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Actors Data" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BlastFamilyDamageRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BlastFamilyDamageRequestBus.names index 9ef94a60bd..9dec40475a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BlastFamilyDamageRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BlastFamilyDamageRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "BlastFamilyDamageRequestBus", + "base": "BlastFamilyDamageRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Get Family Id", + "base": "Get Family Id", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Family Id" @@ -32,7 +32,7 @@ ] }, { - "key": "Destroy actor", + "base": "Destroy actor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Destroy actor" @@ -46,7 +46,7 @@ } }, { - "key": "Triangle Damage", + "base": "Triangle Damage", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Triangle Damage" @@ -90,7 +90,7 @@ ] }, { - "key": "Impact Spread Damage", + "base": "Impact Spread Damage", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Impact Spread Damage" @@ -134,7 +134,7 @@ ] }, { - "key": "Stress Damage", + "base": "Stress Damage", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Stress Damage" @@ -164,7 +164,7 @@ ] }, { - "key": "Shear Damage", + "base": "Shear Damage", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Shear Damage" @@ -215,7 +215,7 @@ ] }, { - "key": "Capsule Damage", + "base": "Capsule Damage", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Capsule Damage" @@ -266,7 +266,7 @@ ] }, { - "key": "Radial Damage", + "base": "Radial Damage", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Radial Damage" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BloomRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BloomRequestBus.names index 0ae96265bc..dbbadc1aaf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BloomRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BloomRequestBus.names @@ -1,1417 +1,1417 @@ { "entries": [ { - "key": "BloomRequestBus", + "base": "BloomRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "BloomRequestBus" + "name": "Bloom Request Bus" }, "methods": [ { - "key": "GetTintStage0Override", + "base": "GetTintStage0Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage0Override" + "tooltip": "When signaled, this will invoke Get Tint Stage 0 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage0Override is invoked" + "tooltip": "Signaled after Get Tint Stage 0 Override is invoked" }, "details": { - "name": "GetTintStage0Override" + "name": "Get Tint Stage 0 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetTintStage0Override", + "base": "SetTintStage0Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage0Override" + "tooltip": "When signaled, this will invoke Set Tint Stage 0 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage0Override is invoked" + "tooltip": "Signaled after Set Tint Stage 0 Override is invoked" }, "details": { - "name": "SetTintStage0Override" + "name": "Set Tint Stage 0 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetTintStage1", + "base": "SetTintStage1", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage1" + "tooltip": "When signaled, this will invoke Set Tint Stage 1" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage1 is invoked" + "tooltip": "Signaled after Set Tint Stage 1 is invoked" }, "details": { - "name": "SetTintStage1" + "name": "Set Tint Stage 1" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "SetTintStage0", + "base": "SetTintStage0", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage0" + "tooltip": "When signaled, this will invoke Set Tint Stage 0" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage0 is invoked" + "tooltip": "Signaled after Set Tint Stage 0 is invoked" }, "details": { - "name": "SetTintStage0" + "name": "Set Tint Stage 0" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "GetKernelSizeStage3Override", + "base": "GetKernelSizeStage3Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage3Override" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 3 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage3Override is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 3 Override is invoked" }, "details": { - "name": "GetKernelSizeStage3Override" + "name": "Get Kernel Size Stage 3 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetTintStage3Override", + "base": "GetTintStage3Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage3Override" + "tooltip": "When signaled, this will invoke Get Tint Stage 3 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage3Override is invoked" + "tooltip": "Signaled after Get Tint Stage 3 Override is invoked" }, "details": { - "name": "GetTintStage3Override" + "name": "Get Tint Stage 3 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKernelSizeScaleOverride", + "base": "SetKernelSizeScaleOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeScaleOverride" + "tooltip": "When signaled, this will invoke Set Kernel Size Scale Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeScaleOverride is invoked" + "tooltip": "Signaled after Set Kernel Size Scale Override is invoked" }, "details": { - "name": "SetKernelSizeScaleOverride" + "name": "Set Kernel Size Scale Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKernelSizeStage2", + "base": "SetKernelSizeStage2", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage2" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 2" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage2 is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 2 is invoked" }, "details": { - "name": "SetKernelSizeStage2" + "name": "Set Kernel Size Stage 2" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetKernelSizeStage4", + "base": "GetKernelSizeStage4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage4" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 4" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage4 is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 4 is invoked" }, "details": { - "name": "GetKernelSizeStage4" + "name": "Get Kernel Size Stage 4" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetTintStage0", + "base": "GetTintStage0", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage0" + "tooltip": "When signaled, this will invoke Get Tint Stage 0" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage0 is invoked" + "tooltip": "Signaled after Get Tint Stage 0 is invoked" }, "details": { - "name": "GetTintStage0" + "name": "Get Tint Stage 0" }, "results": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "SetTintStage4Override", + "base": "SetTintStage4Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage4Override" + "tooltip": "When signaled, this will invoke Set Tint Stage 4 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage4Override is invoked" + "tooltip": "Signaled after Set Tint Stage 4 Override is invoked" }, "details": { - "name": "SetTintStage4Override" + "name": "Set Tint Stage 4 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetKernelSizeScale", + "base": "GetKernelSizeScale", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeScale" + "tooltip": "When signaled, this will invoke Get Kernel Size Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeScale is invoked" + "tooltip": "Signaled after Get Kernel Size Scale is invoked" }, "details": { - "name": "GetKernelSizeScale" + "name": "Get Kernel Size Scale" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetKernelSizeStage2", + "base": "GetKernelSizeStage2", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage2" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 2" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage2 is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 2 is invoked" }, "details": { - "name": "GetKernelSizeStage2" + "name": "Get Kernel Size Stage 2" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetTintStage1Override", + "base": "SetTintStage1Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage1Override" + "tooltip": "When signaled, this will invoke Set Tint Stage 1 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage1Override is invoked" + "tooltip": "Signaled after Set Tint Stage 1 Override is invoked" }, "details": { - "name": "SetTintStage1Override" + "name": "Set Tint Stage 1 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetTintStage3", + "base": "SetTintStage3", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage3" + "tooltip": "When signaled, this will invoke Set Tint Stage 3" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage3 is invoked" + "tooltip": "Signaled after Set Tint Stage 3 is invoked" }, "details": { - "name": "SetTintStage3" + "name": "Set Tint Stage 3" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "GetEnabledOverride", + "base": "GetEnabledOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEnabledOverride" + "tooltip": "When signaled, this will invoke Get Enabled Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEnabledOverride is invoked" + "tooltip": "Signaled after Get Enabled Override is invoked" }, "details": { - "name": "GetEnabledOverride" + "name": "Get Enabled Override" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetTintStage3Override", + "base": "SetTintStage3Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage3Override" + "tooltip": "When signaled, this will invoke Set Tint Stage 3 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage3Override is invoked" + "tooltip": "Signaled after Set Tint Stage 3 Override is invoked" }, "details": { - "name": "SetTintStage3Override" + "name": "Set Tint Stage 3 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetEnabledOverride", + "base": "SetEnabledOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnabledOverride" + "tooltip": "When signaled, this will invoke Set Enabled Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnabledOverride is invoked" + "tooltip": "Signaled after Set Enabled Override is invoked" }, "details": { - "name": "SetEnabledOverride" + "name": "Set Enabled Override" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetKernelSizeStage0", + "base": "SetKernelSizeStage0", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage0" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 0" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage0 is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 0 is invoked" }, "details": { - "name": "SetKernelSizeStage0" + "name": "Set Kernel Size Stage 0" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetKernelSizeStage0Override", + "base": "GetKernelSizeStage0Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage0Override" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 0 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage0Override is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 0 Override is invoked" }, "details": { - "name": "GetKernelSizeStage0Override" + "name": "Get Kernel Size Stage 0 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKernelSizeStage4Override", + "base": "SetKernelSizeStage4Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage4Override" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 4 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage4Override is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 4 Override is invoked" }, "details": { - "name": "SetKernelSizeStage4Override" + "name": "Set Kernel Size Stage 4 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetTintStage2", + "base": "GetTintStage2", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage2" + "tooltip": "When signaled, this will invoke Get Tint Stage 2" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage2 is invoked" + "tooltip": "Signaled after Get Tint Stage 2 is invoked" }, "details": { - "name": "GetTintStage2" + "name": "Get Tint Stage 2" }, "results": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "GetTintStage4Override", + "base": "GetTintStage4Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage4Override" + "tooltip": "When signaled, this will invoke Get Tint Stage 4 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage4Override is invoked" + "tooltip": "Signaled after Get Tint Stage 4 Override is invoked" }, "details": { - "name": "GetTintStage4Override" + "name": "Get Tint Stage 4 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKernelSizeStage0Override", + "base": "SetKernelSizeStage0Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage0Override" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 0 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage0Override is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 0 Override is invoked" }, "details": { - "name": "SetKernelSizeStage0Override" + "name": "Set Kernel Size Stage 0 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetKernelSizeStage4Override", + "base": "GetKernelSizeStage4Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage4Override" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 4 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage4Override is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 4 Override is invoked" }, "details": { - "name": "GetKernelSizeStage4Override" + "name": "Get Kernel Size Stage 4 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetTintStage2Override", + "base": "GetTintStage2Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage2Override" + "tooltip": "When signaled, this will invoke Get Tint Stage 2 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage2Override is invoked" + "tooltip": "Signaled after Get Tint Stage 2 Override is invoked" }, "details": { - "name": "GetTintStage2Override" + "name": "Get Tint Stage 2 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetTintStage3", + "base": "GetTintStage3", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage3" + "tooltip": "When signaled, this will invoke Get Tint Stage 3" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage3 is invoked" + "tooltip": "Signaled after Get Tint Stage 3 is invoked" }, "details": { - "name": "GetTintStage3" + "name": "Get Tint Stage 3" }, "results": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "SetKernelSizeScale", + "base": "SetKernelSizeScale", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeScale" + "tooltip": "When signaled, this will invoke Set Kernel Size Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeScale is invoked" + "tooltip": "Signaled after Set Kernel Size Scale is invoked" }, "details": { - "name": "SetKernelSizeScale" + "name": "Set Kernel Size Scale" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetIntensity", + "base": "GetIntensity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetIntensity" + "tooltip": "When signaled, this will invoke Get Intensity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetIntensity is invoked" + "tooltip": "Signaled after Get Intensity is invoked" }, "details": { - "name": "GetIntensity" + "name": "Get Intensity" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetBicubicEnabledOverride", + "base": "GetBicubicEnabledOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetBicubicEnabledOverride" + "tooltip": "When signaled, this will invoke Get Bicubic Enabled Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetBicubicEnabledOverride is invoked" + "tooltip": "Signaled after Get Bicubic Enabled Override is invoked" }, "details": { - "name": "GetBicubicEnabledOverride" + "name": "Get Bicubic Enabled Override" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetKernelSizeStage4", + "base": "SetKernelSizeStage4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage4" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 4" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage4 is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 4 is invoked" }, "details": { - "name": "SetKernelSizeStage4" + "name": "Set Kernel Size Stage 4" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetBicubicEnabled", + "base": "SetBicubicEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetBicubicEnabled" + "tooltip": "When signaled, this will invoke Set Bicubic Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetBicubicEnabled is invoked" + "tooltip": "Signaled after Set Bicubic Enabled is invoked" }, "details": { - "name": "SetBicubicEnabled" + "name": "Set Bicubic Enabled" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetKernelSizeStage1Override", + "base": "GetKernelSizeStage1Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage1Override" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 1 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage1Override is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 1 Override is invoked" }, "details": { - "name": "GetKernelSizeStage1Override" + "name": "Get Kernel Size Stage 1 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetThresholdOverride", + "base": "GetThresholdOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetThresholdOverride" + "tooltip": "When signaled, this will invoke Get Threshold Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetThresholdOverride is invoked" + "tooltip": "Signaled after Get Threshold Override is invoked" }, "details": { - "name": "GetThresholdOverride" + "name": "Get Threshold Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetIntensity", + "base": "SetIntensity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetIntensity" + "tooltip": "When signaled, this will invoke Set Intensity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetIntensity is invoked" + "tooltip": "Signaled after Set Intensity is invoked" }, "details": { - "name": "SetIntensity" + "name": "Set Intensity" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetBicubicEnabledOverride", + "base": "SetBicubicEnabledOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetBicubicEnabledOverride" + "tooltip": "When signaled, this will invoke Set Bicubic Enabled Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetBicubicEnabledOverride is invoked" + "tooltip": "Signaled after Set Bicubic Enabled Override is invoked" }, "details": { - "name": "SetBicubicEnabledOverride" + "name": "Set Bicubic Enabled Override" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetKernelSizeStage1", + "base": "GetKernelSizeStage1", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage1" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 1" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage1 is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 1 is invoked" }, "details": { - "name": "GetKernelSizeStage1" + "name": "Get Kernel Size Stage 1" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetKernelSizeStage2Override", + "base": "GetKernelSizeStage2Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage2Override" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 2 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage2Override is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 2 Override is invoked" }, "details": { - "name": "GetKernelSizeStage2Override" + "name": "Get Kernel Size Stage 2 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetTintStage4", + "base": "SetTintStage4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage4" + "tooltip": "When signaled, this will invoke Set Tint Stage 4" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage4 is invoked" + "tooltip": "Signaled after Set Tint Stage 4 is invoked" }, "details": { - "name": "SetTintStage4" + "name": "Set Tint Stage 4" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "SetKernelSizeStage1", + "base": "SetKernelSizeStage1", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage1" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 1" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage1 is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 1 is invoked" }, "details": { - "name": "SetKernelSizeStage1" + "name": "Set Kernel Size Stage 1" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetThresholdOverride", + "base": "SetThresholdOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetThresholdOverride" + "tooltip": "When signaled, this will invoke Set Threshold Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetThresholdOverride is invoked" + "tooltip": "Signaled after Set Threshold Override is invoked" }, "details": { - "name": "SetThresholdOverride" + "name": "Set Threshold Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetTintStage1", + "base": "GetTintStage1", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage1" + "tooltip": "When signaled, this will invoke Get Tint Stage 1" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage1 is invoked" + "tooltip": "Signaled after Get Tint Stage 1 is invoked" }, "details": { - "name": "GetTintStage1" + "name": "Get Tint Stage 1" }, "results": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "GetKnee", + "base": "GetKnee", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKnee" + "tooltip": "When signaled, this will invoke Get Knee" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKnee is invoked" + "tooltip": "Signaled after Get Knee is invoked" }, "details": { - "name": "GetKnee" + "name": "Get Knee" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetThreshold", + "base": "SetThreshold", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetThreshold" + "tooltip": "When signaled, this will invoke Set Threshold" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetThreshold is invoked" + "tooltip": "Signaled after Set Threshold is invoked" }, "details": { - "name": "SetThreshold" + "name": "Set Threshold" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetIntensityOverride", + "base": "SetIntensityOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetIntensityOverride" + "tooltip": "When signaled, this will invoke Set Intensity Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetIntensityOverride is invoked" + "tooltip": "Signaled after Set Intensity Override is invoked" }, "details": { - "name": "SetIntensityOverride" + "name": "Set Intensity Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetEnabled", + "base": "GetEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEnabled" + "tooltip": "When signaled, this will invoke Get Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEnabled is invoked" + "tooltip": "Signaled after Get Enabled is invoked" }, "details": { - "name": "GetEnabled" + "name": "Get Enabled" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetKernelSizeStage1Override", + "base": "SetKernelSizeStage1Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage1Override" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 1 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage1Override is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 1 Override is invoked" }, "details": { - "name": "SetKernelSizeStage1Override" + "name": "Set Kernel Size Stage 1 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetKernelSizeStage0", + "base": "GetKernelSizeStage0", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage0" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 0" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage0 is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 0 is invoked" }, "details": { - "name": "GetKernelSizeStage0" + "name": "Get Kernel Size Stage 0" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetTintStage2Override", + "base": "SetTintStage2Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage2Override" + "tooltip": "When signaled, this will invoke Set Tint Stage 2 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage2Override is invoked" + "tooltip": "Signaled after Set Tint Stage 2 Override is invoked" }, "details": { - "name": "SetTintStage2Override" + "name": "Set Tint Stage 2 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetTintStage4", + "base": "GetTintStage4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage4" + "tooltip": "When signaled, this will invoke Get Tint Stage 4" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage4 is invoked" + "tooltip": "Signaled after Get Tint Stage 4 is invoked" }, "details": { - "name": "GetTintStage4" + "name": "Get Tint Stage 4" }, "results": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "GetKernelSizeScaleOverride", + "base": "GetKernelSizeScaleOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeScaleOverride" + "tooltip": "When signaled, this will invoke Get Kernel Size Scale Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeScaleOverride is invoked" + "tooltip": "Signaled after Get Kernel Size Scale Override is invoked" }, "details": { - "name": "GetKernelSizeScaleOverride" + "name": "Get Kernel Size Scale Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKernelSizeStage2Override", + "base": "SetKernelSizeStage2Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage2Override" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 2 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage2Override is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 2 Override is invoked" }, "details": { - "name": "SetKernelSizeStage2Override" + "name": "Set Kernel Size Stage 2 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetKernelSizeStage3", + "base": "GetKernelSizeStage3", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKernelSizeStage3" + "tooltip": "When signaled, this will invoke Get Kernel Size Stage 3" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKernelSizeStage3 is invoked" + "tooltip": "Signaled after Get Kernel Size Stage 3 is invoked" }, "details": { - "name": "GetKernelSizeStage3" + "name": "Get Kernel Size Stage 3" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetTintStage1Override", + "base": "GetTintStage1Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTintStage1Override" + "tooltip": "When signaled, this will invoke Get Tint Stage 1 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTintStage1Override is invoked" + "tooltip": "Signaled after Get Tint Stage 1 Override is invoked" }, "details": { - "name": "GetTintStage1Override" + "name": "Get Tint Stage 1 Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetTintStage2", + "base": "SetTintStage2", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTintStage2" + "tooltip": "When signaled, this will invoke Set Tint Stage 2" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTintStage2 is invoked" + "tooltip": "Signaled after Set Tint Stage 2 is invoked" }, "details": { - "name": "SetTintStage2" + "name": "Set Tint Stage 2" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Value" } } ] }, { - "key": "GetKneeOverride", + "base": "GetKneeOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetKneeOverride" + "tooltip": "When signaled, this will invoke Get Knee Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetKneeOverride is invoked" + "tooltip": "Signaled after Get Knee Override is invoked" }, "details": { - "name": "GetKneeOverride" + "name": "Get Knee Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKnee", + "base": "SetKnee", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKnee" + "tooltip": "When signaled, this will invoke Set Knee" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKnee is invoked" + "tooltip": "Signaled after Set Knee is invoked" }, "details": { - "name": "SetKnee" + "name": "Set Knee" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetIntensityOverride", + "base": "GetIntensityOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetIntensityOverride" + "tooltip": "When signaled, this will invoke Get Intensity Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetIntensityOverride is invoked" + "tooltip": "Signaled after Get Intensity Override is invoked" }, "details": { - "name": "GetIntensityOverride" + "name": "Get Intensity Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetEnabled", + "base": "SetEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnabled" + "tooltip": "When signaled, this will invoke Set Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnabled is invoked" + "tooltip": "Signaled after Set Enabled is invoked" }, "details": { - "name": "SetEnabled" + "name": "Set Enabled" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetThreshold", + "base": "GetThreshold", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetThreshold" + "tooltip": "When signaled, this will invoke Get Threshold" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetThreshold is invoked" + "tooltip": "Signaled after Get Threshold is invoked" }, "details": { - "name": "GetThreshold" + "name": "Get Threshold" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKernelSizeStage3", + "base": "SetKernelSizeStage3", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage3" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 3" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage3 is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 3 is invoked" }, "details": { - "name": "SetKernelSizeStage3" + "name": "Set Kernel Size Stage 3" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKernelSizeStage3Override", + "base": "SetKernelSizeStage3Override", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKernelSizeStage3Override" + "tooltip": "When signaled, this will invoke Set Kernel Size Stage 3 Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKernelSizeStage3Override is invoked" + "tooltip": "Signaled after Set Kernel Size Stage 3 Override is invoked" }, "details": { - "name": "SetKernelSizeStage3Override" + "name": "Set Kernel Size Stage 3 Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "SetKneeOverride", + "base": "SetKneeOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetKneeOverride" + "tooltip": "When signaled, this will invoke Set Knee Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetKneeOverride is invoked" + "tooltip": "Signaled after Set Knee Override is invoked" }, "details": { - "name": "SetKneeOverride" + "name": "Set Knee Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] }, { - "key": "GetBicubicEnabled", + "base": "GetBicubicEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetBicubicEnabled" + "tooltip": "When signaled, this will invoke Get Bicubic Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetBicubicEnabled is invoked" + "tooltip": "Signaled after Get Bicubic Enabled is invoked" }, "details": { - "name": "GetBicubicEnabled" + "name": "Get Bicubic Enabled" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BoundsRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BoundsRequestBus.names index a778eb6039..87ea2b079c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BoundsRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BoundsRequestBus.names @@ -1,53 +1,53 @@ { "entries": [ { - "key": "BoundsRequestBus", + "base": "BoundsRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "BoundsRequestBus" + "name": "Bounds Request Bus" }, "methods": [ { - "key": "GetWorldBounds", + "base": "GetWorldBounds", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetWorldBounds" + "tooltip": "When signaled, this will invoke Get World Bounds" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetWorldBounds is invoked" + "tooltip": "Signaled after Get World Bounds is invoked" }, "details": { - "name": "GetWorldBounds" + "name": "Get World Bounds" }, "results": [ { "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", "details": { - "name": "Aabb" + "name": "AABB" } } ] }, { - "key": "GetLocalBounds", + "base": "GetLocalBounds", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetLocalBounds" + "tooltip": "When signaled, this will invoke Get Local Bounds" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetLocalBounds is invoked" + "tooltip": "Signaled after Get Local Bounds is invoked" }, "details": { - "name": "GetLocalBounds" + "name": "Get Local Bounds" }, "results": [ { "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", "details": { - "name": "Aabb" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BoxShapeComponentRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BoxShapeComponentRequestsBus.names index 816dc5e4ec..16fbe8c4bd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BoxShapeComponentRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/BoxShapeComponentRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "BoxShapeComponentRequestsBus", + "base": "BoxShapeComponentRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetBoxConfiguration", + "base": "GetBoxConfiguration", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Configuration" @@ -34,7 +34,7 @@ ] }, { - "key": "GetBoxDimensions", + "base": "GetBoxDimensions", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Dimensions" @@ -57,7 +57,7 @@ ] }, { - "key": "SetBoxDimensions", + "base": "SetBoxDimensions", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Dimensions" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraRequestBus.names index 4fbeba0aa7..6c0112bfc2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CameraRequestBus", + "base": "CameraRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetOrthographicHalfWidth", + "base": "GetOrthographicHalfWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Orthographic Half Width" @@ -32,7 +32,7 @@ ] }, { - "key": "GetFov", + "base": "GetFov", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Field of View" @@ -54,7 +54,7 @@ ] }, { - "key": "SetFovRadians", + "base": "SetFovRadians", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Field of View (Radians)" @@ -76,7 +76,7 @@ ] }, { - "key": "SetNearClipDistance", + "base": "SetNearClipDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Near Clip Distance" @@ -98,7 +98,7 @@ ] }, { - "key": "IsOrthographic", + "base": "IsOrthographic", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Orthographic" @@ -120,7 +120,7 @@ ] }, { - "key": "SetFovDegrees", + "base": "SetFovDegrees", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Field of View (Degrees)" @@ -142,7 +142,7 @@ ] }, { - "key": "GetFovRadians", + "base": "GetFovRadians", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Field of View (Radians)" @@ -164,7 +164,7 @@ ] }, { - "key": "SetFov", + "base": "SetFov", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Field of View" @@ -186,7 +186,7 @@ ] }, { - "key": "MakeActiveView", + "base": "MakeActiveView", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Make Active View" @@ -200,7 +200,7 @@ } }, { - "key": "GetFarClipDistance", + "base": "GetFarClipDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Far Clip Distance" @@ -222,7 +222,7 @@ ] }, { - "key": "GetFovDegrees", + "base": "GetFovDegrees", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Field of View (Degrees)" @@ -244,7 +244,7 @@ ] }, { - "key": "SetOrthographic", + "base": "SetOrthographic", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Orthographic" @@ -266,7 +266,7 @@ ] }, { - "key": "SetOrthographicHalfWidth", + "base": "SetOrthographicHalfWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Orthographic Half Width" @@ -288,7 +288,7 @@ ] }, { - "key": "GetNearClipDistance", + "base": "GetNearClipDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Near Clip Distance" @@ -310,7 +310,7 @@ ] }, { - "key": "SetFarClipDistance", + "base": "SetFarClipDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Far Clip Distance" @@ -332,7 +332,7 @@ ] }, { - "key": "IsActiveView", + "base": "IsActiveView", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Active View" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraSystemRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraSystemRequestBus.names index 6ad6354cd4..c8f9638b52 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraSystemRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraSystemRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CameraSystemRequestBus", + "base": "CameraSystemRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetActiveCamera", + "base": "GetActiveCamera", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Active Camera" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CapsuleShapeComponentRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CapsuleShapeComponentRequestsBus.names index ac6a688b01..d8d9222b09 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CapsuleShapeComponentRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CapsuleShapeComponentRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CapsuleShapeComponentRequestsBus", + "base": "CapsuleShapeComponentRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetCapsuleConfiguration", + "base": "GetCapsuleConfiguration", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Configuration" @@ -34,7 +34,7 @@ ] }, { - "key": "SetHeight", + "base": "SetHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Height" @@ -58,7 +58,7 @@ ] }, { - "key": "SetRadius", + "base": "SetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Radius" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CharacterControllerRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CharacterControllerRequestBus.names index df4a2d29df..e0226d0a6f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CharacterControllerRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CharacterControllerRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CharacterControllerRequestBus", + "base": "CharacterControllerRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetSlopeLimitDegrees", + "base": "SetSlopeLimitDegrees", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Slope Limit Degrees" @@ -32,7 +32,7 @@ ] }, { - "key": "GetSlopeLimitDegrees", + "base": "GetSlopeLimitDegrees", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Slope Limit Degrees" @@ -54,7 +54,7 @@ ] }, { - "key": "SetMaximumSpeed", + "base": "SetMaximumSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Maximum Speed" @@ -76,7 +76,7 @@ ] }, { - "key": "GetUpDirection", + "base": "GetUpDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Up Direction" @@ -98,7 +98,7 @@ ] }, { - "key": "AddVelocity", + "base": "AddVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Add Velocity" @@ -120,7 +120,7 @@ ] }, { - "key": "SetBasePosition", + "base": "SetBasePosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Base Position" @@ -142,7 +142,7 @@ ] }, { - "key": "GetCenterPosition", + "base": "GetCenterPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Center Position" @@ -164,7 +164,7 @@ ] }, { - "key": "GetStepHeight", + "base": "GetStepHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Step Height" @@ -186,7 +186,7 @@ ] }, { - "key": "GetBasePosition", + "base": "GetBasePosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Base Position" @@ -208,7 +208,7 @@ ] }, { - "key": "SetStepHeight", + "base": "SetStepHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Step Height" @@ -230,7 +230,7 @@ ] }, { - "key": "GetMaximumSpeed", + "base": "GetMaximumSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Maximum Speed" @@ -252,7 +252,7 @@ ] }, { - "key": "GetVelocity", + "base": "GetVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Velocity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CharacterGameplayRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CharacterGameplayRequestBus.names index 6a957de61b..f3b01b7898 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CharacterGameplayRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CharacterGameplayRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CharacterGameplayRequestBus", + "base": "CharacterGameplayRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetFallingVelocity", + "base": "GetFallingVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Falling Velocity" @@ -31,7 +31,7 @@ ] }, { - "key": "GetGravityMultiplier", + "base": "GetGravityMultiplier", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Gravity Multiplier" @@ -53,7 +53,7 @@ ] }, { - "key": "SetGravityMultiplier", + "base": "SetGravityMultiplier", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Gravity Multiplier" @@ -75,7 +75,7 @@ ] }, { - "key": "IsOnGround", + "base": "IsOnGround", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is On Ground" @@ -97,7 +97,7 @@ ] }, { - "key": "SetFallingVelocity", + "base": "SetFallingVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Falling Velocity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CollisionFilteringBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CollisionFilteringBus.names index 1c8eba4b1f..b4f903b1d2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CollisionFilteringBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CollisionFilteringBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CollisionFilteringBus", + "base": "CollisionFilteringBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ToggleCollisionLayer", + "base": "ToggleCollisionLayer", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Toggle Collision Layer" @@ -43,7 +43,7 @@ ] }, { - "key": "SetCollisionGroup", + "base": "SetCollisionGroup", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Collision Group" @@ -71,7 +71,7 @@ ] }, { - "key": "GetCollisionGroupName", + "base": "GetCollisionGroupName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Collision Group Name" @@ -93,7 +93,7 @@ ] }, { - "key": "GetCollisionLayerName", + "base": "GetCollisionLayerName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Collision Layer Name" @@ -115,7 +115,7 @@ ] }, { - "key": "SetCollisionLayer", + "base": "SetCollisionLayer", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Collision Layer" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentApplicationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentApplicationBus.names index 59eb3e5025..21682964e3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentApplicationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentApplicationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ComponentApplicationBus", + "base": "ComponentApplicationBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetEntityName", + "base": "GetEntityName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Entity Name" @@ -41,7 +41,7 @@ ] }, { - "key": "SetEntityName", + "base": "SetEntityName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Entity Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentModeSystemRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentModeSystemRequestBus.names index c2cbe27fbb..d657a8218a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentModeSystemRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentModeSystemRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ComponentModeSystemRequestBus", + "base": "ComponentModeSystemRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "EnterComponentMode", + "base": "EnterComponentMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke EnterComponentMode" @@ -31,7 +31,7 @@ ] }, { - "key": "EndComponentMode", + "base": "EndComponentMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke EndComponentMode" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ConsoleRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ConsoleRequestBus.names index eb2414b9b4..2f2c1a69f7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ConsoleRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ConsoleRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ConsoleRequestBus", + "base": "ConsoleRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ExecuteConsoleCommand", + "base": "ExecuteConsoleCommand", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Execute Console Command" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ConstantGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ConstantGradientRequestBus.names index 6d445cc293..a7313a9ffd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ConstantGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ConstantGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ConstantGradientRequestBus", + "base": "ConstantGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetConstantValue", + "base": "GetConstantValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetConstantValue" @@ -31,7 +31,7 @@ ] }, { - "key": "SetConstantValue", + "base": "SetConstantValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetConstantValue" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CylinderShapeComponentRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CylinderShapeComponentRequestsBus.names index a4bd93758f..b4de59a887 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CylinderShapeComponentRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CylinderShapeComponentRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CylinderShapeComponentRequestsBus", + "base": "CylinderShapeComponentRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetCylinderConfiguration", + "base": "GetCylinderConfiguration", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Configuration" @@ -34,7 +34,7 @@ ] }, { - "key": "SetHeight", + "base": "SetHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Height" @@ -58,7 +58,7 @@ ] }, { - "key": "SetRadius", + "base": "SetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Radius" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DebugDrawRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DebugDrawRequestBus.names index 18933932f8..78c04e0aea 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DebugDrawRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DebugDrawRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "DebugDrawRequestBus", + "base": "DebugDrawRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "DrawTextOnEntity", + "base": "DrawTextOnEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Text On Entity" @@ -50,7 +50,7 @@ ] }, { - "key": "DrawRayEntityToDirection", + "base": "DrawRayEntityToDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Ray Entity To Direction" @@ -91,7 +91,7 @@ ] }, { - "key": "DrawObb", + "base": "DrawObb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Oriented Bounding Box" @@ -125,7 +125,7 @@ ] }, { - "key": "DrawObbOnEntity", + "base": "DrawObbOnEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Oriented Bounding Box on Entity" @@ -166,7 +166,7 @@ ] }, { - "key": "DrawRayLocationToDirection", + "base": "DrawRayLocationToDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Ray Location To Direction" @@ -206,7 +206,7 @@ ] }, { - "key": "DrawSphereOnEntity", + "base": "DrawSphereOnEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Sphere On Entity" @@ -247,7 +247,7 @@ ] }, { - "key": "DrawAabbOnEntity", + "base": "DrawAabbOnEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Axis Aligned Bounding Box On Entity" @@ -288,7 +288,7 @@ ] }, { - "key": "DrawLineEntityToEntity", + "base": "DrawLineEntityToEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Line Entity To Entity" @@ -330,7 +330,7 @@ ] }, { - "key": "DrawTextAtLocation", + "base": "DrawTextAtLocation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Text At Location" @@ -370,7 +370,7 @@ ] }, { - "key": "DrawTextOnScreen", + "base": "DrawTextOnScreen", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Text On Screen" @@ -404,7 +404,7 @@ ] }, { - "key": "DrawAabb", + "base": "DrawAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Axis Aligned Bounding Box" @@ -438,7 +438,7 @@ ] }, { - "key": "DrawLineLocationToLocation", + "base": "DrawLineLocationToLocation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Line Location To Location" @@ -478,7 +478,7 @@ ] }, { - "key": "DrawLineEntityToLocation", + "base": "DrawLineEntityToLocation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Line Entity To Location" @@ -519,7 +519,7 @@ ] }, { - "key": "DrawRayEntityToEntity", + "base": "DrawRayEntityToEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Ray Entity To Entity" @@ -561,7 +561,7 @@ ] }, { - "key": "DrawSphereAtLocation", + "base": "DrawSphereAtLocation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Draw Sphere At Location" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DecalRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DecalRequestBus.names index 2d69295887..7be614892d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DecalRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DecalRequestBus.names @@ -1,185 +1,186 @@ { "entries": [ { - "key": "DecalRequestBus", + "base": "DecalRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "DecalRequestBus" + "name": "Decal", + "category": "Rendering" }, "methods": [ { - "key": "GetMaterial", + "base": "GetMaterial", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetMaterial" + "tooltip": "When signaled, this will invoke Get Material" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetMaterial is invoked" + "tooltip": "Signaled after Get Material is invoked" }, "details": { - "name": "GetMaterial" + "name": "Get Material" }, "results": [ { "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AssetId" + "name": "Asset Id" } } ] }, { - "key": "GetSortKey", + "base": "GetSortKey", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetSortKey" + "tooltip": "When signaled, this will invoke Get Sort Key" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetSortKey is invoked" + "tooltip": "Signaled after Get Sort Key is invoked" }, "details": { - "name": "GetSortKey" + "name": "Get Sort Key" }, "results": [ { "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", "details": { - "name": "unsigned char" + "name": "Sort Key" } } ] }, { - "key": "SetSortKey", + "base": "SetSortKey", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetSortKey" + "tooltip": "When signaled, this will invoke Set Sort Key" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetSortKey is invoked" + "tooltip": "Signaled after Set Sort Key is invoked" }, "details": { - "name": "SetSortKey" + "name": "Set Sort Key" }, "params": [ { "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", "details": { - "name": "unsigned char" + "name": "Sort Key" } } ] }, { - "key": "SetMaterial", + "base": "SetMaterial", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetMaterial" + "tooltip": "When signaled, this will invoke Set Material" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetMaterial is invoked" + "tooltip": "Signaled after Set Material is invoked" }, "details": { - "name": "SetMaterial" + "name": "Set Material" }, "params": [ { "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AssetId" + "name": "Asset Id" } } ] }, { - "key": "SetAttenuationAngle", + "base": "SetAttenuationAngle", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAttenuationAngle" + "tooltip": "When signaled, this will invoke Set Attenuation Angle" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAttenuationAngle is invoked" + "tooltip": "Signaled after Set Attenuation Angle is invoked" }, "details": { - "name": "SetAttenuationAngle" + "name": "Set Attenuation Angle" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Attenuation Angle" } } ] }, { - "key": "GetOpacity", + "base": "GetOpacity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetOpacity" + "tooltip": "When signaled, this will invoke Get Opacity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetOpacity is invoked" + "tooltip": "Signaled after Get Opacity is invoked" }, "details": { - "name": "GetOpacity" + "name": "Get Opacity" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Opacity" } } ] }, { - "key": "SetOpacity", + "base": "SetOpacity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetOpacity" + "tooltip": "When signaled, this will invoke Set Opacity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetOpacity is invoked" + "tooltip": "Signaled after Set Opacity is invoked" }, "details": { - "name": "SetOpacity" + "name": "Set Opacity" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Opacity" } } ] }, { - "key": "GetAttenuationAngle", + "base": "GetAttenuationAngle", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAttenuationAngle" + "tooltip": "When signaled, this will invoke Get Attenuation Angle" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAttenuationAngle is invoked" + "tooltip": "Signaled after Get Attenuation Angle is invoked" }, "details": { - "name": "GetAttenuationAngle" + "name": "Get Attenuation Angle" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Attenuation Angle" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DeferredFogRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DeferredFogRequestsBus.names index ff796ed9d8..a3ba8eda5d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DeferredFogRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DeferredFogRequestsBus.names @@ -1,493 +1,494 @@ { "entries": [ { - "key": "DeferredFogRequestsBus", + "base": "DeferredFogRequestsBus", "context": "EBusSender", "variant": "", "details": { - "name": "DeferredFogRequestsBus" + "name": "Deferred Fog", + "category": "Rendering" }, "methods": [ { - "key": "SetNoiseTexture", + "base": "SetNoiseTexture", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetNoiseTexture" + "tooltip": "When signaled, this will invoke Set Noise Texture" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetNoiseTexture is invoked" + "tooltip": "Signaled after Set Noise Texture is invoked" }, "details": { - "name": "SetNoiseTexture" + "name": "Set Noise Texture" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Path" } } ] }, { - "key": "SetNoiseTexCoordScale", + "base": "SetNoiseTexCoordScale", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetNoiseTexCoordScale" + "tooltip": "When signaled, this will invoke Set Noise Tex Coord Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetNoiseTexCoordScale is invoked" + "tooltip": "Signaled after Set Noise Tex Coord Scale is invoked" }, "details": { - "name": "SetNoiseTexCoordScale" + "name": "Set Noise Tex Coord Scale" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Tex Coord Scale" } } ] }, { - "key": "SetNoiseTexCoord2Scale", + "base": "SetNoiseTexCoord2Scale", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetNoiseTexCoord2Scale" + "tooltip": "When signaled, this will invoke Set Noise Tex Coord 2 Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetNoiseTexCoord2Scale is invoked" + "tooltip": "Signaled after Set Noise Tex Coord 2 Scale is invoked" }, "details": { - "name": "SetNoiseTexCoord2Scale" + "name": "Set Noise Tex Coord 2 Scale" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Tex Coord 2 Scale" } } ] }, { - "key": "GetFogMaxHeight", + "base": "GetFogMaxHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFogMaxHeight" + "tooltip": "When signaled, this will invoke Get Fog Max Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFogMaxHeight is invoked" + "tooltip": "Signaled after Get Fog Max Height is invoked" }, "details": { - "name": "GetFogMaxHeight" + "name": "Get Fog Max Height" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Max Height" } } ] }, { - "key": "GetNoiseTexCoordScale", + "base": "GetNoiseTexCoordScale", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetNoiseTexCoordScale" + "tooltip": "When signaled, this will invoke Get Noise Tex Coord Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetNoiseTexCoordScale is invoked" + "tooltip": "Signaled after Get Noise Tex Coord Scale is invoked" }, "details": { - "name": "GetNoiseTexCoordScale" + "name": "Get Noise Tex Coord Scale" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Tex Coord Scale" } } ] }, { - "key": "GetNoiseTexCoordVelocity", + "base": "GetNoiseTexCoordVelocity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetNoiseTexCoordVelocity" + "tooltip": "When signaled, this will invoke Get Noise Tex Coord Velocity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetNoiseTexCoordVelocity is invoked" + "tooltip": "Signaled after Get Noise Tex Coord Velocity is invoked" }, "details": { - "name": "GetNoiseTexCoordVelocity" + "name": "Get Noise Tex Coord Velocity" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Tex Coord Velocity" } } ] }, { - "key": "SetFogEndDistance", + "base": "SetFogEndDistance", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFogEndDistance" + "tooltip": "When signaled, this will invoke Set Fog End Distance" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFogEndDistance is invoked" + "tooltip": "Signaled after Set Fog End Distance is invoked" }, "details": { - "name": "SetFogEndDistance" + "name": "Set Fog End Distance" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Fod End Distance" } } ] }, { - "key": "GetFogEndDistance", + "base": "GetFogEndDistance", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFogEndDistance" + "tooltip": "When signaled, this will invoke Get Fog End Distance" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFogEndDistance is invoked" + "tooltip": "Signaled after Get Fog End Distance is invoked" }, "details": { - "name": "GetFogEndDistance" + "name": "Get Fog End Distance" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Fog End Distance" } } ] }, { - "key": "GetNoiseTexCoord2Scale", + "base": "GetNoiseTexCoord2Scale", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetNoiseTexCoord2Scale" + "tooltip": "When signaled, this will invoke Get Noise Tex Coord 2 Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetNoiseTexCoord2Scale is invoked" + "tooltip": "Signaled after Get Noise Tex Coord 2 Scale is invoked" }, "details": { - "name": "GetNoiseTexCoord2Scale" + "name": "Get Noise Tex Coord 2 Scale" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Tex Coord 2 Scale" } } ] }, { - "key": "SetNoiseTexCoord2Velocity", + "base": "SetNoiseTexCoord2Velocity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetNoiseTexCoord2Velocity" + "tooltip": "When signaled, this will invoke Set Noise Tex Coord 2 Velocity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetNoiseTexCoord2Velocity is invoked" + "tooltip": "Signaled after Set Noise Tex Coord 2 Velocity is invoked" }, "details": { - "name": "SetNoiseTexCoord2Velocity" + "name": "Set Noise Tex Coord 2 Velocity" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Tex Coord 2 Velocity" } } ] }, { - "key": "GetFogStartDistance", + "base": "GetFogStartDistance", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFogStartDistance" + "tooltip": "When signaled, this will invoke Get Fog Start Distance" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFogStartDistance is invoked" + "tooltip": "Signaled after Get Fog Start Distance is invoked" }, "details": { - "name": "GetFogStartDistance" + "name": "Get Fog Start Distance" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Fog Start Distance" } } ] }, { - "key": "SetFogMaxHeight", + "base": "SetFogMaxHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFogMaxHeight" + "tooltip": "When signaled, this will invoke Set Fog Max Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFogMaxHeight is invoked" + "tooltip": "Signaled after Set Fog Max Height is invoked" }, "details": { - "name": "SetFogMaxHeight" + "name": "Set Fog Max Height" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Fog Max Height" } } ] }, { - "key": "SetNoiseTexCoordVelocity", + "base": "SetNoiseTexCoordVelocity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetNoiseTexCoordVelocity" + "tooltip": "When signaled, this will invoke Set Noise Tex Coord Velocity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetNoiseTexCoordVelocity is invoked" + "tooltip": "Signaled after Set Noise Tex Coord Velocity is invoked" }, "details": { - "name": "SetNoiseTexCoordVelocity" + "name": "Set Noise Tex Coord Velocity" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Tex Coord Velocity" } } ] }, { - "key": "GetNoiseTexCoord2Velocity", + "base": "GetNoiseTexCoord2Velocity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetNoiseTexCoord2Velocity" + "tooltip": "When signaled, this will invoke Get Noise Tex Coord 2 Velocity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetNoiseTexCoord2Velocity is invoked" + "tooltip": "Signaled after Get Noise Tex Coord 2 Velocity is invoked" }, "details": { - "name": "GetNoiseTexCoord2Velocity" + "name": "Get Noise Tex Coord 2 Velocity" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Tex Coord 2 Velocity" } } ] }, { - "key": "SetFogStartDistance", + "base": "SetFogStartDistance", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFogStartDistance" + "tooltip": "When signaled, this will invoke Set Fog Start Distance" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFogStartDistance is invoked" + "tooltip": "Signaled after Set Fog Start Distance is invoked" }, "details": { - "name": "SetFogStartDistance" + "name": "Set Fog Start Distance" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Fog Start Distance" } } ] }, { - "key": "GetFogMinHeight", + "base": "GetFogMinHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFogMinHeight" + "tooltip": "When signaled, this will invoke Get Fog Min Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFogMinHeight is invoked" + "tooltip": "Signaled after Get Fog Min Height is invoked" }, "details": { - "name": "GetFogMinHeight" + "name": "Get Fog Min Height" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Fog Min Height" } } ] }, { - "key": "GetFogColor", + "base": "GetFogColor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFogColor" + "tooltip": "When signaled, this will invoke Get Fog Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFogColor is invoked" + "tooltip": "Signaled after Get Fog Color is invoked" }, "details": { - "name": "GetFogColor" + "name": "Get Fog Color" }, "results": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Fog Color" } } ] }, { - "key": "SetOctavesBlendFactor", + "base": "SetOctavesBlendFactor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetOctavesBlendFactor" + "tooltip": "When signaled, this will invoke Set Octaves Blend Factor" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetOctavesBlendFactor is invoked" + "tooltip": "Signaled after Set Octaves Blend Factor is invoked" }, "details": { - "name": "SetOctavesBlendFactor" + "name": "Set Octaves Blend Factor" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Octaves Blend Factor" } } ] }, { - "key": "GetOctavesBlendFactor", + "base": "GetOctavesBlendFactor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetOctavesBlendFactor" + "tooltip": "When signaled, this will invoke Get Octaves Blend Factor" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetOctavesBlendFactor is invoked" + "tooltip": "Signaled after Get Octaves Blend Factor is invoked" }, "details": { - "name": "GetOctavesBlendFactor" + "name": "Get Octaves Blend Factor" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Octaves Blend Factor" } } ] }, { - "key": "SetFogColor", + "base": "SetFogColor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFogColor" + "tooltip": "When signaled, this will invoke Set Fog Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFogColor is invoked" + "tooltip": "Signaled after Set Fog Color is invoked" }, "details": { - "name": "SetFogColor" + "name": "Set Fog Color" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Fog Color" } } ] }, { - "key": "SetFogMinHeight", + "base": "SetFogMinHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFogMinHeight" + "tooltip": "When signaled, this will invoke Set Fog Min Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFogMinHeight is invoked" + "tooltip": "Signaled after Set Fog Min Height is invoked" }, "details": { - "name": "SetFogMinHeight" + "name": "Set Fog Min Height" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Fog Min Height" } } ] }, { - "key": "GetNoiseTexture", + "base": "GetNoiseTexture", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetNoiseTexture" + "tooltip": "When signaled, this will invoke Get Noise Texture" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetNoiseTexture is invoked" + "tooltip": "Signaled after Get Noise Texture is invoked" }, "details": { - "name": "GetNoiseTexture" + "name": "Get Noise Texture" }, "results": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Path" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DepthOfFieldRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DepthOfFieldRequestBus.names index 1fbc15e794..781ef189cc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DepthOfFieldRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DepthOfFieldRequestBus.names @@ -1,532 +1,533 @@ { "entries": [ { - "key": "DepthOfFieldRequestBus", + "base": "DepthOfFieldRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "DepthOfFieldRequestBus" + "name": "Depth Of Field", + "category": "Post Process" }, "methods": [ { - "key": "GetEnableDebugColoringOverride", + "base": "GetEnableDebugColoringOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEnableDebugColoringOverride" + "tooltip": "When signaled, this will invoke Get Enable Debug Coloring Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEnableDebugColoringOverride is invoked" + "tooltip": "Signaled after Get Enable Debug Coloring Override is invoked" }, "details": { - "name": "GetEnableDebugColoringOverride" + "name": "Get Enable Debug Coloring Override" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetAutoFocusSpeedOverride", + "base": "GetAutoFocusSpeedOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAutoFocusSpeedOverride" + "tooltip": "When signaled, this will invoke Get Auto Focus Speed Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAutoFocusSpeedOverride is invoked" + "tooltip": "Signaled after Get Auto Focus Speed Override is invoked" }, "details": { - "name": "GetAutoFocusSpeedOverride" + "name": "Get Auto Focus Speed Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Speed" } } ] }, { - "key": "SetAutoFocusSensitivity", + "base": "SetAutoFocusSensitivity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAutoFocusSensitivity" + "tooltip": "When signaled, this will invoke Set Auto Focus Sensitivity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAutoFocusSensitivity is invoked" + "tooltip": "Signaled after Set Auto Focus Sensitivity is invoked" }, "details": { - "name": "SetAutoFocusSensitivity" + "name": "Set Auto Focus Sensitivity" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Sensitivity" } } ] }, { - "key": "SetAutoFocusDelayOverride", + "base": "SetAutoFocusDelayOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAutoFocusDelayOverride" + "tooltip": "When signaled, this will invoke Set Auto Focus Delay Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAutoFocusDelayOverride is invoked" + "tooltip": "Signaled after Set Auto Focus Delay Override is invoked" }, "details": { - "name": "SetAutoFocusDelayOverride" + "name": "Set Auto Focus Delay Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Delay" } } ] }, { - "key": "GetAutoFocusScreenPosition", + "base": "GetAutoFocusScreenPosition", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAutoFocusScreenPosition" + "tooltip": "When signaled, this will invoke Get Auto Focus Screen Position" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAutoFocusScreenPosition is invoked" + "tooltip": "Signaled after Get Auto Focus Screen Position is invoked" }, "details": { - "name": "GetAutoFocusScreenPosition" + "name": "Get Auto Focus Screen Position" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Auto Focus Screen" } } ] }, { - "key": "GetEnableDebugColoring", + "base": "GetEnableDebugColoring", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEnableDebugColoring" + "tooltip": "When signaled, this will invoke Get Enable Debug Coloring" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEnableDebugColoring is invoked" + "tooltip": "Signaled after Get Enable Debug Coloring is invoked" }, "details": { - "name": "GetEnableDebugColoring" + "name": "Get Enable Debug Coloring" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetFocusDistance", + "base": "SetFocusDistance", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFocusDistance" + "tooltip": "When signaled, this will invoke Set Focus Distance" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFocusDistance is invoked" + "tooltip": "Signaled after Set Focus Distance is invoked" }, "details": { - "name": "SetFocusDistance" + "name": "Set Focus Distance" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Focus Distance" } } ] }, { - "key": "SetQualityLevel", + "base": "SetQualityLevel", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetQualityLevel" + "tooltip": "When signaled, this will invoke Set Quality Level" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetQualityLevel is invoked" + "tooltip": "Signaled after Set Quality Level is invoked" }, "details": { - "name": "SetQualityLevel" + "name": "Set Quality Level" }, "params": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Quality Level" } } ] }, { - "key": "SetCameraEntityId", + "base": "SetCameraEntityId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetCameraEntityId" + "tooltip": "When signaled, this will invoke Set Camera Entity Id" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetCameraEntityId is invoked" + "tooltip": "Signaled after Set Camera Entity Id is invoked" }, "details": { - "name": "SetCameraEntityId" + "name": "Set Camera Entity Id" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } } ] }, { - "key": "SetAutoFocusDelay", + "base": "SetAutoFocusDelay", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAutoFocusDelay" + "tooltip": "When signaled, this will invoke Set Auto Focus Delay" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAutoFocusDelay is invoked" + "tooltip": "Signaled after Set Auto Focus Delay is invoked" }, "details": { - "name": "SetAutoFocusDelay" + "name": "Set Auto Focus Delay" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Delay" } } ] }, { - "key": "GetAutoFocusDelay", + "base": "GetAutoFocusDelay", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAutoFocusDelay" + "tooltip": "When signaled, this will invoke Get Auto Focus Delay" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAutoFocusDelay is invoked" + "tooltip": "Signaled after Get Auto Focus Delay is invoked" }, "details": { - "name": "GetAutoFocusDelay" + "name": "Get Auto Focus Delay" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Delay" } } ] }, { - "key": "SetAutoFocusScreenPosition", + "base": "SetAutoFocusScreenPosition", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAutoFocusScreenPosition" + "tooltip": "When signaled, this will invoke Set Auto Focus Screen Position" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAutoFocusScreenPosition is invoked" + "tooltip": "Signaled after Set Auto Focus Screen Position is invoked" }, "details": { - "name": "SetAutoFocusScreenPosition" + "name": "Set Auto Focus Screen Position" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Auto Focus Screen Position" } } ] }, { - "key": "GetFNumber", + "base": "GetFNumber", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFNumber" + "tooltip": "When signaled, this will invoke GetF Number" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFNumber is invoked" + "tooltip": "Signaled after GetF Number is invoked" }, "details": { - "name": "GetFNumber" + "name": "Get F Number" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "F Number" } } ] }, { - "key": "SetApertureFOverride", + "base": "SetApertureFOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetApertureFOverride" + "tooltip": "When signaled, this will invoke Set ApertureF Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetApertureFOverride is invoked" + "tooltip": "Signaled after Set ApertureF Override is invoked" }, "details": { - "name": "SetApertureFOverride" + "name": "Set Aperture F Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Aperture F" } } ] }, { - "key": "SetEnabled", + "base": "SetEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnabled" + "tooltip": "When signaled, this will invoke Set Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnabled is invoked" + "tooltip": "Signaled after Set Enabled is invoked" }, "details": { - "name": "SetEnabled" + "name": "Set Enabled" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetAutoFocusScreenPositionOverride", + "base": "SetAutoFocusScreenPositionOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAutoFocusScreenPositionOverride" + "tooltip": "When signaled, this will invoke Set Auto Focus Screen Position Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAutoFocusScreenPositionOverride is invoked" + "tooltip": "Signaled after Set Auto Focus Screen Position Override is invoked" }, "details": { - "name": "SetAutoFocusScreenPositionOverride" + "name": "Set Auto Focus Screen Position Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Screen Position" } } ] }, { - "key": "GetQualityLevelOverride", + "base": "GetQualityLevelOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetQualityLevelOverride" + "tooltip": "When signaled, this will invoke Get Quality Level Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetQualityLevelOverride is invoked" + "tooltip": "Signaled after Get Quality Level Override is invoked" }, "details": { - "name": "GetQualityLevelOverride" + "name": "Get Quality Level Override" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Quality Level" } } ] }, { - "key": "SetAutoFocusSpeedOverride", + "base": "SetAutoFocusSpeedOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAutoFocusSpeedOverride" + "tooltip": "When signaled, this will invoke Set Auto Focus Speed Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAutoFocusSpeedOverride is invoked" + "tooltip": "Signaled after Set Auto Focus Speed Override is invoked" }, "details": { - "name": "SetAutoFocusSpeedOverride" + "name": "Set Auto Focus Speed Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Speed" } } ] }, { - "key": "GetEnableAutoFocusOverride", + "base": "GetEnableAutoFocusOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEnableAutoFocusOverride" + "tooltip": "When signaled, this will invoke Get Enable Auto Focus Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEnableAutoFocusOverride is invoked" + "tooltip": "Signaled after Get Enable Auto Focus Override is invoked" }, "details": { - "name": "GetEnableAutoFocusOverride" + "name": "Get Enable Auto Focus Override" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetEnableDebugColoring", + "base": "SetEnableDebugColoring", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnableDebugColoring" + "tooltip": "When signaled, this will invoke Set Enable Debug Coloring" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnableDebugColoring is invoked" + "tooltip": "Signaled after Set Enable Debug Coloring is invoked" }, "details": { - "name": "SetEnableDebugColoring" + "name": "Set Enable Debug Coloring" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetFocusDistanceOverride", + "base": "SetFocusDistanceOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFocusDistanceOverride" + "tooltip": "When signaled, this will invoke Set Focus Distance Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFocusDistanceOverride is invoked" + "tooltip": "Signaled after Set Focus Distance Override is invoked" }, "details": { - "name": "SetFocusDistanceOverride" + "name": "Set Focus Distance Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Focus Distance" } } ] }, { - "key": "GetEnableAutoFocus", + "base": "GetEnableAutoFocus", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEnableAutoFocus" + "tooltip": "When signaled, this will invoke Get Enable Auto Focus" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEnableAutoFocus is invoked" + "tooltip": "Signaled after Get Enable Auto Focus is invoked" }, "details": { - "name": "GetEnableAutoFocus" + "name": "Get Enable Auto Focus" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enable" } } ] }, { - "key": "SetApertureF", + "base": "SetApertureF", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetApertureF" + "tooltip": "When signaled, this will invoke Set ApertureF" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetApertureF is invoked" + "tooltip": "Signaled after Set ApertureF is invoked" }, "details": { - "name": "SetApertureF" + "name": "Set Aperture F" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Aperture F" } } ] }, { - "key": "SetCameraEntityIdOverride", + "base": "SetCameraEntityIdOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetCameraEntityIdOverride" + "tooltip": "When signaled, this will invoke Set Camera Entity Id Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetCameraEntityIdOverride is invoked" + "tooltip": "Signaled after Set Camera Entity Id Override is invoked" }, "details": { - "name": "SetCameraEntityIdOverride" + "name": "Set Camera Entity Id Override" }, "params": [ { @@ -538,458 +539,458 @@ ] }, { - "key": "GetEnabled", + "base": "GetEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEnabled" + "tooltip": "When signaled, this will invoke Get Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEnabled is invoked" + "tooltip": "Signaled after Get Enabled is invoked" }, "details": { - "name": "GetEnabled" + "name": "Get Enabled" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetFocusDistance", + "base": "GetFocusDistance", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFocusDistance" + "tooltip": "When signaled, this will invoke Get Focus Distance" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFocusDistance is invoked" + "tooltip": "Signaled after Get Focus Distance is invoked" }, "details": { - "name": "GetFocusDistance" + "name": "Get Focus Distance" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Focus Distance" } } ] }, { - "key": "GetEnabledOverride", + "base": "GetEnabledOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEnabledOverride" + "tooltip": "When signaled, this will invoke Get Enabled Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEnabledOverride is invoked" + "tooltip": "Signaled after Get Enabled Override is invoked" }, "details": { - "name": "GetEnabledOverride" + "name": "Get Enabled Override" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetCameraEntityId", + "base": "GetCameraEntityId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCameraEntityId" + "tooltip": "When signaled, this will invoke Get Camera Entity Id" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCameraEntityId is invoked" + "tooltip": "Signaled after Get Camera Entity Id is invoked" }, "details": { - "name": "GetCameraEntityId" + "name": "Get Camera Entity Id" }, "results": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } } ] }, { - "key": "GetAutoFocusScreenPositionOverride", + "base": "GetAutoFocusScreenPositionOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAutoFocusScreenPositionOverride" + "tooltip": "When signaled, this will invoke Get Auto Focus Screen Position Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAutoFocusScreenPositionOverride is invoked" + "tooltip": "Signaled after Get Auto Focus Screen Position Override is invoked" }, "details": { - "name": "GetAutoFocusScreenPositionOverride" + "name": "Get Auto Focus Screen Position Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Screen Position" } } ] }, { - "key": "GetAutoFocusSpeed", + "base": "GetAutoFocusSpeed", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAutoFocusSpeed" + "tooltip": "When signaled, this will invoke Get Auto Focus Speed" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAutoFocusSpeed is invoked" + "tooltip": "Signaled after Get Auto Focus Speed is invoked" }, "details": { - "name": "GetAutoFocusSpeed" + "name": "Get Auto Focus Speed" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Speed" } } ] }, { - "key": "SetEnabledOverride", + "base": "SetEnabledOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnabledOverride" + "tooltip": "When signaled, this will invoke Set Enabled Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnabledOverride is invoked" + "tooltip": "Signaled after Set Enabled Override is invoked" }, "details": { - "name": "SetEnabledOverride" + "name": "Set Enabled Override" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetAutoFocusSensitivity", + "base": "GetAutoFocusSensitivity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAutoFocusSensitivity" + "tooltip": "When signaled, this will invoke Get Auto Focus Sensitivity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAutoFocusSensitivity is invoked" + "tooltip": "Signaled after Get Auto Focus Sensitivity is invoked" }, "details": { - "name": "GetAutoFocusSensitivity" + "name": "Get Auto Focus Sensitivity" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Sensitivity" } } ] }, { - "key": "GetAutoFocusDelayOverride", + "base": "GetAutoFocusDelayOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAutoFocusDelayOverride" + "tooltip": "When signaled, this will invoke Get Auto Focus Delay Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAutoFocusDelayOverride is invoked" + "tooltip": "Signaled after Get Auto Focus Delay Override is invoked" }, "details": { - "name": "GetAutoFocusDelayOverride" + "name": "Get Auto Focus Delay Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Delay" } } ] }, { - "key": "GetApertureF", + "base": "GetApertureF", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetApertureF" + "tooltip": "When signaled, this will invoke Get ApertureF" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetApertureF is invoked" + "tooltip": "Signaled after Get ApertureF is invoked" }, "details": { - "name": "GetApertureF" + "name": "Get Aperture F" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Aperture F" } } ] }, { - "key": "GetApertureFOverride", + "base": "GetApertureFOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetApertureFOverride" + "tooltip": "When signaled, this will invoke Get ApertureF Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetApertureFOverride is invoked" + "tooltip": "Signaled after Get ApertureF Override is invoked" }, "details": { - "name": "GetApertureFOverride" + "name": "Get Aperture F Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Aperture F" } } ] }, { - "key": "SetAutoFocusSensitivityOverride", + "base": "SetAutoFocusSensitivityOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAutoFocusSensitivityOverride" + "tooltip": "When signaled, this will invoke Set Auto Focus Sensitivity Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAutoFocusSensitivityOverride is invoked" + "tooltip": "Signaled after Set Auto Focus Sensitivity Override is invoked" }, "details": { - "name": "SetAutoFocusSensitivityOverride" + "name": "Set Auto Focus Sensitivity Override" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Sensitivity" } } ] }, { - "key": "SetQualityLevelOverride", + "base": "SetQualityLevelOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetQualityLevelOverride" + "tooltip": "When signaled, this will invoke Set Quality Level Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetQualityLevelOverride is invoked" + "tooltip": "Signaled after Set Quality Level Override is invoked" }, "details": { - "name": "SetQualityLevelOverride" + "name": "Set Quality Level Override" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Quality Level" } } ] }, { - "key": "GetFocusDistanceOverride", + "base": "GetFocusDistanceOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFocusDistanceOverride" + "tooltip": "When signaled, this will invoke Get Focus Distance Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFocusDistanceOverride is invoked" + "tooltip": "Signaled after Get Focus Distance Override is invoked" }, "details": { - "name": "GetFocusDistanceOverride" + "name": "Get Focus Distance Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Focus Distance" } } ] }, { - "key": "SetAutoFocusSpeed", + "base": "SetAutoFocusSpeed", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAutoFocusSpeed" + "tooltip": "When signaled, this will invoke Set Auto Focus Speed" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAutoFocusSpeed is invoked" + "tooltip": "Signaled after Set Auto Focus Speed is invoked" }, "details": { - "name": "SetAutoFocusSpeed" + "name": "Set Auto Focus Speed" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Speed" } } ] }, { - "key": "SetEnableAutoFocusOverride", + "base": "SetEnableAutoFocusOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnableAutoFocusOverride" + "tooltip": "When signaled, this will invoke Set Enable Auto Focus Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnableAutoFocusOverride is invoked" + "tooltip": "Signaled after Set Enable Auto Focus Override is invoked" }, "details": { - "name": "SetEnableAutoFocusOverride" + "name": "Set Enable Auto Focus Override" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enable" } } ] }, { - "key": "GetQualityLevel", + "base": "GetQualityLevel", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetQualityLevel" + "tooltip": "When signaled, this will invoke Get Quality Level" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetQualityLevel is invoked" + "tooltip": "Signaled after Get Quality Level is invoked" }, "details": { - "name": "GetQualityLevel" + "name": "Get Quality Level" }, "results": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Quality Level" } } ] }, { - "key": "GetAutoFocusSensitivityOverride", + "base": "GetAutoFocusSensitivityOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAutoFocusSensitivityOverride" + "tooltip": "When signaled, this will invoke Get Auto Focus Sensitivity Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAutoFocusSensitivityOverride is invoked" + "tooltip": "Signaled after Get Auto Focus Sensitivity Override is invoked" }, "details": { - "name": "GetAutoFocusSensitivityOverride" + "name": "Get Auto Focus Sensitivity Override" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Auto Focus Sensitivity" } } ] }, { - "key": "SetEnableDebugColoringOverride", + "base": "SetEnableDebugColoringOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnableDebugColoringOverride" + "tooltip": "When signaled, this will invoke Set Enable Debug Coloring Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnableDebugColoringOverride is invoked" + "tooltip": "Signaled after Set Enable Debug Coloring Override is invoked" }, "details": { - "name": "SetEnableDebugColoringOverride" + "name": "Set Enable Debug Coloring Override" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enable" } } ] }, { - "key": "SetFNumber", + "base": "SetFNumber", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFNumber" + "tooltip": "When signaled, this will invoke SetF Number" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFNumber is invoked" + "tooltip": "Signaled after SetF Number is invoked" }, "details": { - "name": "SetFNumber" + "name": "Set F Number" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "F Number" } } ] }, { - "key": "GetCameraEntityIdOverride", + "base": "GetCameraEntityIdOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCameraEntityIdOverride" + "tooltip": "When signaled, this will invoke Get Camera Entity Id Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCameraEntityIdOverride is invoked" + "tooltip": "Signaled after Get Camera Entity Id Override is invoked" }, "details": { - "name": "GetCameraEntityIdOverride" + "name": "Get Camera Entity Id Override" }, "results": [ { @@ -1001,23 +1002,23 @@ ] }, { - "key": "SetEnableAutoFocus", + "base": "SetEnableAutoFocus", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnableAutoFocus" + "tooltip": "When signaled, this will invoke Set Enable Auto Focus" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnableAutoFocus is invoked" + "tooltip": "Signaled after Set Enable Auto Focus is invoked" }, "details": { - "name": "SetEnableAutoFocus" + "name": "Set Enable Auto Focus" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enable" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DirectionalLightRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DirectionalLightRequestBus.names index 40b3627894..bed5f6de73 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DirectionalLightRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DirectionalLightRequestBus.names @@ -1,423 +1,446 @@ { "entries": [ { - "key": "DirectionalLightRequestBus", + "base": "DirectionalLightRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "DirectionalLightRequestBus" + "name": "Directional Light", + "category": "Lights" }, "methods": [ { - "key": "GetShadowBias", + "base": "GetNormalShadowBias", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetShadowBias" + "tooltip": "When signaled, this will invoke Get Normal Shadow Bias" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetShadowBias is invoked" + "tooltip": "Signaled after Get Normal Shadow Bias is invoked" }, "details": { - "name": "GetShadowBias" + "name": "Get Normal Shadow Bias" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Normal Shadow Bias" } } ] }, { - "key": "SetAngularDiameter", + "base": "GetShadowBias", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAngularDiameter" + "tooltip": "When signaled, this will invoke Get Shadow Bias" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAngularDiameter is invoked" + "tooltip": "Signaled after Get Shadow Bias is invoked" }, "details": { - "name": "SetAngularDiameter" - }, - "params": [ - { - "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", - "details": { - "name": "float" - } - } - ] - }, - { - "key": "GetShadowFarClipDistance", - "entry": { - "name": "In", - "tooltip": "When signaled, this will invoke GetShadowFarClipDistance" - }, - "exit": { - "name": "Out", - "tooltip": "Signaled after GetShadowFarClipDistance is invoked" - }, - "details": { - "name": "GetShadowFarClipDistance" + "name": "Get Shadow Bias" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Shadow Bias" } } ] }, { - "key": "SetShadowBias", + "base": "SetAngularDiameter", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetShadowBias" + "tooltip": "When signaled, this will invoke Set Angular Diameter" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetShadowBias is invoked" + "tooltip": "Signaled after Set Angular Diameter is invoked" }, "details": { - "name": "SetShadowBias" + "name": "Set Angular Diameter" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Angular Diameter" } } ] }, { - "key": "SetIntensity", + "base": "GetShadowFarClipDistance", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetIntensity" + "tooltip": "When signaled, this will invoke Get Shadow Far Clip Distance" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetIntensity is invoked" + "tooltip": "Signaled after Get Shadow Far Clip Distance is invoked" }, "details": { - "name": "SetIntensity" + "name": "Get Shadow Far Clip Distance" + }, + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Shadow Far Clip Distance" + } + } + ] + }, + { + "base": "SetShadowBias", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Set Shadow Bias" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Set Shadow Bias is invoked" + }, + "details": { + "name": "Set Shadow Bias" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Shadow Bias" } } ] }, { - "key": "SetSplitRatio", + "base": "SetIntensity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetSplitRatio" + "tooltip": "When signaled, this will invoke Set Intensity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetSplitRatio is invoked" + "tooltip": "Signaled after Set Intensity is invoked" }, "details": { - "name": "SetSplitRatio" + "name": "Set Intensity" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Intensity" } } ] }, { - "key": "GetFilteringSampleCount", + "base": "SetSplitRatio", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFilteringSampleCount" + "tooltip": "When signaled, this will invoke Set Split Ratio" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFilteringSampleCount is invoked" + "tooltip": "Signaled after Set Split Ratio is invoked" }, "details": { - "name": "GetFilteringSampleCount" + "name": "Set Split Ratio" + }, + "params": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Split Ratio" + } + } + ] + }, + { + "base": "GetFilteringSampleCount", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Filtering Sample Count" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Filtering Sample Count is invoked" + }, + "details": { + "name": "Get Filtering Sample Count" }, "results": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Filtering Sample Count" } } ] }, { - "key": "GetShadowFilterMethod", + "base": "GetShadowFilterMethod", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetShadowFilterMethod" + "tooltip": "When signaled, this will invoke Get Shadow Filter Method" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetShadowFilterMethod is invoked" + "tooltip": "Signaled after Get Shadow Filter Method is invoked" }, "details": { - "name": "GetShadowFilterMethod" + "name": "Get Shadow Filter Method" }, "results": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Shadow Filter Method" } } ] }, { - "key": "GetCameraEntityId", + "base": "GetCameraEntityId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCameraEntityId" + "tooltip": "When signaled, this will invoke Get Camera Entity Id" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCameraEntityId is invoked" + "tooltip": "Signaled after Get Camera Entity Id is invoked" }, "details": { - "name": "GetCameraEntityId" + "name": "Get Camera Entity Id" }, "results": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Camera Entity Id", "tooltip": "Entity Unique Id" } } ] }, { - "key": "SetDebugColoringEnabled", + "base": "SetDebugColoringEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetDebugColoringEnabled" + "tooltip": "When signaled, this will invoke Set Debug Coloring Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetDebugColoringEnabled is invoked" + "tooltip": "Signaled after Set Debug Coloring Enabled is invoked" }, "details": { - "name": "SetDebugColoringEnabled" + "name": "Set Debug Coloring Enabled" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetDebugColoringEnabled", + "base": "GetDebugColoringEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetDebugColoringEnabled" + "tooltip": "When signaled, this will invoke Get Debug Coloring Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetDebugColoringEnabled is invoked" + "tooltip": "Signaled after Get Debug Coloring Enabled is invoked" }, "details": { - "name": "GetDebugColoringEnabled" + "name": "Get Debug Coloring Enabled" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetViewFrustumCorrectionEnabled", + "base": "GetViewFrustumCorrectionEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetViewFrustumCorrectionEnabled" + "tooltip": "When signaled, this will invoke Get View Frustum Correction Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetViewFrustumCorrectionEnabled is invoked" + "tooltip": "Signaled after Get View Frustum Correction Enabled is invoked" }, "details": { - "name": "GetViewFrustumCorrectionEnabled" + "name": "Get View Frustum Correction Enabled" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetViewFrustumCorrectionEnabled", + "base": "SetViewFrustumCorrectionEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetViewFrustumCorrectionEnabled" + "tooltip": "When signaled, this will invoke Set View Frustum Correction Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetViewFrustumCorrectionEnabled is invoked" + "tooltip": "Signaled after Set View Frustum Correction Enabled is invoked" }, "details": { - "name": "SetViewFrustumCorrectionEnabled" + "name": "Set View Frustum Correction Enabled" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "SetGroundHeight", + "base": "SetGroundHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetGroundHeight" + "tooltip": "When signaled, this will invoke Set Ground Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetGroundHeight is invoked" + "tooltip": "Signaled after Set Ground Height is invoked" }, "details": { - "name": "SetGroundHeight" + "name": "Set Ground Height" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Ground Height" } } ] }, { - "key": "GetShadowReceiverPlaneBiasEnabled", + "base": "GetShadowReceiverPlaneBiasEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetShadowReceiverPlaneBiasEnabled" + "tooltip": "When signaled, this will invoke Get Shadow Receiver Plane Bias Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetShadowReceiverPlaneBiasEnabled is invoked" + "tooltip": "Signaled after Get Shadow Receiver Plane Bias Enabled is invoked" }, "details": { - "name": "GetShadowReceiverPlaneBiasEnabled" + "name": "Get Shadow Receiver Plane Bias Enabled" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Shadow Receiver Plane Bias" } } ] }, { - "key": "SetShadowmapSize", + "base": "SetShadowmapSize", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetShadowmapSize" + "tooltip": "When signaled, this will invoke Set Shadowmap Size" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetShadowmapSize is invoked" + "tooltip": "Signaled after Set Shadowmap Size is invoked" }, "details": { - "name": "SetShadowmapSize" + "name": "Set Shadowmap Size" }, "params": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Shadowmap Size" } } ] }, { - "key": "SetShadowFarClipDistance", + "base": "SetShadowFarClipDistance", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetShadowFarClipDistance" + "tooltip": "When signaled, this will invoke Set Shadow Far Clip Distance" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetShadowFarClipDistance is invoked" + "tooltip": "Signaled after Set Shadow Far Clip Distance is invoked" }, "details": { - "name": "SetShadowFarClipDistance" + "name": "Set Shadow Far Clip Distance" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Shadow Far Clip Distance" } } ] }, { - "key": "SetCameraEntityId", + "base": "SetCameraEntityId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetCameraEntityId" + "tooltip": "When signaled, this will invoke Set Camera Entity Id" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetCameraEntityId is invoked" + "tooltip": "Signaled after Set Camera Entity Id is invoked" }, "details": { - "name": "SetCameraEntityId" + "name": "Set Camera Entity Id" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Camera Entity Id", "tooltip": "Entity Unique Id" } } ] }, { - "key": "GetColor", + "base": "GetColor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetColor" + "tooltip": "When signaled, this will invoke Get Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetColor is invoked" + "tooltip": "Signaled after Get Color is invoked" }, "details": { - "name": "GetColor" + "name": "Get Color" }, "results": [ { @@ -429,325 +452,347 @@ ] }, { - "key": "SetSplitAutomatic", + "base": "SetSplitAutomatic", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetSplitAutomatic" + "tooltip": "When signaled, this will invoke Set Split Automatic" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetSplitAutomatic is invoked" + "tooltip": "Signaled after Set Split Automatic is invoked" }, "details": { - "name": "SetSplitAutomatic" + "name": "Set Split Automatic" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Split Automatic" } } ] }, { - "key": "SetCascadeFarDepth", + "base": "SetCascadeFarDepth", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetCascadeFarDepth" + "tooltip": "When signaled, this will invoke Set Cascade Far Depth" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetCascadeFarDepth is invoked" + "tooltip": "Signaled after Set Cascade Far Depth is invoked" }, "details": { - "name": "SetCascadeFarDepth" + "name": "Set Cascade Far Depth" }, "params": [ { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4" + "name": "Cascade Far Depth" } } ] }, { - "key": "GetSplitAutomatic", + "base": "GetSplitAutomatic", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetSplitAutomatic" + "tooltip": "When signaled, this will invoke Get Split Automatic" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetSplitAutomatic is invoked" + "tooltip": "Signaled after Get Split Automatic is invoked" }, "details": { - "name": "GetSplitAutomatic" + "name": "Get Split Automatic" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Split Automatic" } } ] }, { - "key": "GetGroundHeight", + "base": "GetGroundHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetGroundHeight" + "tooltip": "When signaled, this will invoke Get Ground Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetGroundHeight is invoked" + "tooltip": "Signaled after Get Ground Height is invoked" }, "details": { - "name": "GetGroundHeight" + "name": "Get Ground Height" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Ground Height" } } ] }, { - "key": "SetCascadeCount", + "base": "SetCascadeCount", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetCascadeCount" + "tooltip": "When signaled, this will invoke Set Cascade Count" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetCascadeCount is invoked" + "tooltip": "Signaled after Set Cascade Count is invoked" }, "details": { - "name": "SetCascadeCount" + "name": "Set Cascade Count" }, "params": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Cascade Count" } } ] }, { - "key": "SetFilteringSampleCount", + "base": "SetFilteringSampleCount", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFilteringSampleCount" + "tooltip": "When signaled, this will invoke Set Filtering Sample Count" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFilteringSampleCount is invoked" + "tooltip": "Signaled after Set Filtering Sample Count is invoked" }, "details": { - "name": "SetFilteringSampleCount" + "name": "Set Filtering Sample Count" }, "params": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Filtering Sample Count" } } ] }, { - "key": "GetCascadeCount", + "base": "GetCascadeCount", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCascadeCount" + "tooltip": "When signaled, this will invoke Get Cascade Count" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCascadeCount is invoked" + "tooltip": "Signaled after Get Cascade Count is invoked" }, "details": { - "name": "GetCascadeCount" + "name": "Get Cascade Count" }, "results": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Cascade Count" } } ] }, { - "key": "GetIntensity", + "base": "GetIntensity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetIntensity" + "tooltip": "When signaled, this will invoke Get Intensity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetIntensity is invoked" + "tooltip": "Signaled after Get Intensity is invoked" }, "details": { - "name": "GetIntensity" + "name": "Get Intensity" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Intensity" } } ] }, { - "key": "GetShadowmapSize", + "base": "SetNormalShadowBias", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetShadowmapSize" + "tooltip": "When signaled, this will invoke Set Normal Shadow Bias" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetShadowmapSize is invoked" + "tooltip": "Signaled after Set Normal Shadow Bias is invoked" }, "details": { - "name": "GetShadowmapSize" + "name": "Set Normal Shadow Bias" + }, + "params": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Normal Shadow Bias" + } + } + ] + }, + { + "base": "GetShadowmapSize", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Shadowmap Size" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Shadowmap Size is invoked" + }, + "details": { + "name": "Get Shadowmap Size" }, "results": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Shadowmap Size" } } ] }, { - "key": "GetAngularDiameter", + "base": "GetAngularDiameter", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAngularDiameter" + "tooltip": "When signaled, this will invoke Get Angular Diameter" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAngularDiameter is invoked" + "tooltip": "Signaled after Get Angular Diameter is invoked" }, "details": { - "name": "GetAngularDiameter" + "name": "Get Angular Diameter" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Angular Diameter" } } ] }, { - "key": "SetShadowFilterMethod", + "base": "SetShadowFilterMethod", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetShadowFilterMethod" + "tooltip": "When signaled, this will invoke Set Shadow Filter Method" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetShadowFilterMethod is invoked" + "tooltip": "Signaled after Set Shadow Filter Method is invoked" }, "details": { - "name": "SetShadowFilterMethod" + "name": "Set Shadow Filter Method" }, "params": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Shadow Filter Method" } } ] }, { - "key": "SetShadowReceiverPlaneBiasEnabled", + "base": "SetShadowReceiverPlaneBiasEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetShadowReceiverPlaneBiasEnabled" + "tooltip": "When signaled, this will invoke Set Shadow Receiver Plane Bias Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetShadowReceiverPlaneBiasEnabled is invoked" + "tooltip": "Signaled after Set Shadow Receiver Plane Bias Enabled is invoked" }, "details": { - "name": "SetShadowReceiverPlaneBiasEnabled" + "name": "Set Shadow Receiver Plane Bias Enabled" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Enabled" } } ] }, { - "key": "GetSplitRatio", + "base": "GetSplitRatio", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetSplitRatio" + "tooltip": "When signaled, this will invoke Get Split Ratio" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetSplitRatio is invoked" + "tooltip": "Signaled after Get Split Ratio is invoked" }, "details": { - "name": "GetSplitRatio" + "name": "Get Split Ratio" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Split Ratio" } } ] }, { - "key": "GetCascadeFarDepth", + "base": "GetCascadeFarDepth", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCascadeFarDepth" + "tooltip": "When signaled, this will invoke Get Cascade Far Depth" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCascadeFarDepth is invoked" + "tooltip": "Signaled after Get Cascade Far Depth is invoked" }, "details": { - "name": "GetCascadeFarDepth" + "name": "Get Cascade Far Depth" }, "results": [ { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4" + "name": "Cascade Far Depth" } } ] }, { - "key": "SetColor", + "base": "SetColor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetColor" + "tooltip": "When signaled, this will invoke Set Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetColor is invoked" + "tooltip": "Signaled after Set Color is invoked" }, "details": { - "name": "SetColor" + "name": "Set Color" }, "params": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DiskShapeComponentRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DiskShapeComponentRequestsBus.names index ad7012b470..8ba928cf1a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DiskShapeComponentRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DiskShapeComponentRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "DiskShapeComponentRequestsBus", + "base": "DiskShapeComponentRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetDiskConfiguration", + "base": "GetDiskConfiguration", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetDiskConfiguration" @@ -32,7 +32,7 @@ ] }, { - "key": "SetRadius", + "base": "SetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetRadius" @@ -54,7 +54,7 @@ ] }, { - "key": "GetRadius", + "base": "GetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetRadius" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DitherGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DitherGradientRequestBus.names index 87a65a50e9..3eb019767f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DitherGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DitherGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "DitherGradientRequestBus", + "base": "DitherGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetPatternType", + "base": "GetPatternType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPatternType" @@ -31,7 +31,7 @@ ] }, { - "key": "SetPatternType", + "base": "SetPatternType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPatternType" @@ -53,7 +53,7 @@ ] }, { - "key": "SetPatternOffset", + "base": "SetPatternOffset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPatternOffset" @@ -75,7 +75,7 @@ ] }, { - "key": "GetPatternOffset", + "base": "GetPatternOffset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPatternOffset" @@ -97,7 +97,7 @@ ] }, { - "key": "GetPointsPerUnit", + "base": "GetPointsPerUnit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPointsPerUnit" @@ -119,7 +119,7 @@ ] }, { - "key": "SetPointsPerUnit", + "base": "SetPointsPerUnit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPointsPerUnit" @@ -141,7 +141,7 @@ ] }, { - "key": "SetUseSystemPointsPerUnit", + "base": "SetUseSystemPointsPerUnit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetUseSystemPointsPerUnit" @@ -163,7 +163,7 @@ ] }, { - "key": "GetUseSystemPointsPerUnit", + "base": "GetUseSystemPointsPerUnit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetUseSystemPointsPerUnit" @@ -185,7 +185,7 @@ ] }, { - "key": "GetGradientSampler", + "base": "GetGradientSampler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGradientSampler" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorCameraRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorCameraRequestBus.names index cbc3fcc40e..000d01dd63 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorCameraRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorCameraRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorCameraRequestBus", + "base": "EditorCameraRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetViewFromEntityPerspective", + "base": "SetViewFromEntityPerspective", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set View From Entity Perspective" @@ -33,7 +33,7 @@ ] }, { - "key": "SetViewAndMovementLockFromEntityPerspective", + "base": "SetViewAndMovementLockFromEntityPerspective", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set View And Movement Lock From Entity Perspective" @@ -62,7 +62,7 @@ ] }, { - "key": "GetCurrentViewEntityId", + "base": "GetCurrentViewEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Current View Entity Id" @@ -85,7 +85,7 @@ ] }, { - "key": "GetActiveCameraPosition", + "base": "GetActiveCameraPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Active Camera Position" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorCameraViewRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorCameraViewRequestBus.names index e24bf3f6d2..1fd0dafc6e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorCameraViewRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorCameraViewRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorCameraViewRequestBus", + "base": "EditorCameraViewRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ToggleCameraAsActiveView", + "base": "ToggleCameraAsActiveView", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ToggleCameraAsActiveView" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityAPIBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityAPIBus.names index 590311828a..2e11a4e4ee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityAPIBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityAPIBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorEntityAPIBus", + "base": "EditorEntityAPIBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetVisibilityState", + "base": "SetVisibilityState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetVisibilityState" @@ -31,7 +31,7 @@ ] }, { - "key": "SetLockState", + "base": "SetLockState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetLockState" @@ -53,7 +53,7 @@ ] }, { - "key": "SetStartStatus", + "base": "SetStartStatus", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetStartStatus" @@ -75,7 +75,7 @@ ] }, { - "key": "SetName", + "base": "SetName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetName" @@ -97,7 +97,7 @@ ] }, { - "key": "SetParent", + "base": "SetParent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetParent" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityContextRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityContextRequestBus.names index 6071cd821c..f87678c0fa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityContextRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityContextRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorEntityContextRequestBus", + "base": "EditorEntityContextRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetEditorEntityContextId", + "base": "GetEditorEntityContextId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEditorEntityContextId" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityInfoRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityInfoRequestBus.names index 955cee31e7..c8c2085ede 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityInfoRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorEntityInfoRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorEntityInfoRequestBus", + "base": "EditorEntityInfoRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetName", + "base": "GetName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetName" @@ -31,7 +31,7 @@ ] }, { - "key": "IsVisible", + "base": "IsVisible", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsVisible" @@ -53,7 +53,7 @@ ] }, { - "key": "GetChildIndex", + "base": "GetChildIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetChildIndex" @@ -84,7 +84,7 @@ ] }, { - "key": "GetStartStatus", + "base": "GetStartStatus", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetStartStatus" @@ -106,7 +106,7 @@ ] }, { - "key": "GetChild", + "base": "GetChild", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetChild" @@ -137,7 +137,7 @@ ] }, { - "key": "GetChildCount", + "base": "GetChildCount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetChildCount" @@ -159,7 +159,7 @@ ] }, { - "key": "GetChildren", + "base": "GetChildren", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetChildren" @@ -181,7 +181,7 @@ ] }, { - "key": "IsLocked", + "base": "IsLocked", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsLocked" @@ -203,7 +203,7 @@ ] }, { - "key": "GetParent", + "base": "GetParent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetParent" @@ -226,7 +226,7 @@ ] }, { - "key": "IsHidden", + "base": "IsHidden", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsHidden" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorLayerComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorLayerComponentRequestBus.names index 820632b705..f280f11360 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorLayerComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorLayerComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorLayerComponentRequestBus", + "base": "EditorLayerComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetVisibility", + "base": "SetVisibility", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetVisibility" @@ -31,7 +31,7 @@ ] }, { - "key": "SetLayerColor", + "base": "SetLayerColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetLayerColor" @@ -53,7 +53,7 @@ ] }, { - "key": "GetColorPropertyValue", + "base": "GetColorPropertyValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorPropertyValue" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorLayerTrackViewRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorLayerTrackViewRequestBus.names index 6f7bf51a14..58712e28bd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorLayerTrackViewRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorLayerTrackViewRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorLayerTrackViewRequestBus", + "base": "EditorLayerTrackViewRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "NewSequence", + "base": "NewSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke NewSequence" @@ -37,7 +37,7 @@ ] }, { - "key": "SetRecording", + "base": "SetRecording", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetRecording" @@ -59,7 +59,7 @@ ] }, { - "key": "GetNumSequences", + "base": "GetNumSequences", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNumSequences" @@ -81,7 +81,7 @@ ] }, { - "key": "GetSequenceName", + "base": "GetSequenceName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSequenceName" @@ -111,7 +111,7 @@ ] }, { - "key": "GetSequenceTimeRange", + "base": "GetSequenceTimeRange", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSequenceTimeRange" @@ -141,7 +141,7 @@ ] }, { - "key": "PlaySequence", + "base": "PlaySequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke PlaySequence" @@ -155,7 +155,7 @@ } }, { - "key": "GetNodeName", + "base": "GetNodeName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNodeName" @@ -191,7 +191,7 @@ ] }, { - "key": "SetSequenceTimeRange", + "base": "SetSequenceTimeRange", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSequenceTimeRange" @@ -225,7 +225,7 @@ ] }, { - "key": "DeleteSequence", + "base": "DeleteSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DeleteSequence" @@ -247,7 +247,7 @@ ] }, { - "key": "GetKeyValue", + "base": "GetKeyValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetKeyValue" @@ -301,7 +301,7 @@ ] }, { - "key": "StopSequence", + "base": "StopSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke StopSequence" @@ -315,7 +315,7 @@ } }, { - "key": "AddSelectedEntities", + "base": "AddSelectedEntities", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddSelectedEntities" @@ -329,7 +329,7 @@ } }, { - "key": "GetNumTrackKeys", + "base": "GetNumTrackKeys", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNumTrackKeys" @@ -377,7 +377,7 @@ ] }, { - "key": "AddLayerNode", + "base": "AddLayerNode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddLayerNode" @@ -391,7 +391,7 @@ } }, { - "key": "DeleteNode", + "base": "DeleteNode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DeleteNode" @@ -419,7 +419,7 @@ ] }, { - "key": "GetInterpolatedValue", + "base": "GetInterpolatedValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetInterpolatedValue" @@ -473,7 +473,7 @@ ] }, { - "key": "GetNumNodes", + "base": "GetNumNodes", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNumNodes" @@ -503,7 +503,7 @@ ] }, { - "key": "AddNode", + "base": "AddNode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddNode" @@ -531,7 +531,7 @@ ] }, { - "key": "AddTrack", + "base": "AddTrack", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddTrack" @@ -565,7 +565,7 @@ ] }, { - "key": "DeleteTrack", + "base": "DeleteTrack", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DeleteTrack" @@ -605,7 +605,7 @@ ] }, { - "key": "SetCurrentSequence", + "base": "SetCurrentSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCurrentSequence" @@ -627,7 +627,7 @@ ] }, { - "key": "SetTime", + "base": "SetTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetTime" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorReflectionProbeBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorReflectionProbeBus.names index 78a087ae6b..9893d61dad 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorReflectionProbeBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorReflectionProbeBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorReflectionProbeBus", + "base": "EditorReflectionProbeBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "BakeReflectionProbe", + "base": "BakeReflectionProbe", "entry": { "name": "In", "tooltip": "When signaled, this will invoke BakeReflectionProbe" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorRequestBus.names index 658dcf6369..55ee11ab52 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorRequestBus", + "base": "EditorRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "RegisterCustomViewPane", + "base": "RegisterCustomViewPane", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RegisterCustomViewPane" @@ -43,7 +43,7 @@ ] }, { - "key": "UnregisterViewPane", + "base": "UnregisterViewPane", "entry": { "name": "In", "tooltip": "When signaled, this will invoke UnregisterViewPane" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorToolsApplicationRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorToolsApplicationRequestBus.names index 1734915b62..1fd4ea025a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorToolsApplicationRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorToolsApplicationRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorToolsApplicationRequestBus", + "base": "EditorToolsApplicationRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "Exit", + "base": "Exit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Exit" @@ -23,7 +23,7 @@ } }, { - "key": "GetCurrentLevelName", + "base": "GetCurrentLevelName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCurrentLevelName" @@ -45,7 +45,7 @@ ] }, { - "key": "GetGameFolder", + "base": "GetGameFolder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGameFolder" @@ -67,7 +67,7 @@ ] }, { - "key": "CreateLevelNoPrompt", + "base": "CreateLevelNoPrompt", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CreateLevelNoPrompt" @@ -109,7 +109,7 @@ ] }, { - "key": "OpenLevelNoPrompt", + "base": "OpenLevelNoPrompt", "entry": { "name": "In", "tooltip": "When signaled, this will invoke OpenLevelNoPrompt" @@ -139,7 +139,7 @@ ] }, { - "key": "GetCurrentLevelPath", + "base": "GetCurrentLevelPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCurrentLevelPath" @@ -161,7 +161,7 @@ ] }, { - "key": "ExitNoPrompt", + "base": "ExitNoPrompt", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ExitNoPrompt" @@ -175,7 +175,7 @@ } }, { - "key": "OpenLevel", + "base": "OpenLevel", "entry": { "name": "In", "tooltip": "When signaled, this will invoke OpenLevel" @@ -205,7 +205,7 @@ ] }, { - "key": "CreateLevel", + "base": "CreateLevel", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CreateLevel" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorTransformComponentSelectionRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorTransformComponentSelectionRequestBus.names index 61641cf327..bd7e0157b9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorTransformComponentSelectionRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/EditorTransformComponentSelectionRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "EditorTransformComponentSelectionRequestBus", + "base": "EditorTransformComponentSelectionRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CopyTranslationToSelectedEntitiesGroup", + "base": "CopyTranslationToSelectedEntitiesGroup", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Copy Translation To Selected Entities Group" @@ -32,7 +32,7 @@ ] }, { - "key": "CopyOrientationToSelectedEntitiesIndividual", + "base": "CopyOrientationToSelectedEntitiesIndividual", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Copy Orientation To Selected Entities Individual" @@ -54,7 +54,7 @@ ] }, { - "key": "CopyOrientationToSelectedEntitiesGroup", + "base": "CopyOrientationToSelectedEntitiesGroup", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Copy Orientation To Selected Entities Group" @@ -76,7 +76,7 @@ ] }, { - "key": "CopyTranslationToSelectedEntitiesIndividual", + "base": "CopyTranslationToSelectedEntitiesIndividual", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Copy Translation To Selected Entities Individual" @@ -98,7 +98,7 @@ ] }, { - "key": "CopyScaleToSelectedEntitiesIndividualLocal", + "base": "CopyScaleToSelectedEntitiesIndividualLocal", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Copy Scale To Selected Entities Individual Local" @@ -120,7 +120,7 @@ ] }, { - "key": "OverrideManipulatorTranslation", + "base": "OverrideManipulatorTranslation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Override Manipulator Translation" @@ -142,7 +142,7 @@ ] }, { - "key": "RefreshManipulators", + "base": "RefreshManipulators", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Refresh Manipulators" @@ -164,7 +164,7 @@ ] }, { - "key": "OverrideManipulatorOrientation", + "base": "OverrideManipulatorOrientation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Override Manipulator Orientation" @@ -186,7 +186,7 @@ ] }, { - "key": "GetTransformMode", + "base": "GetTransformMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Transform Mode" @@ -208,7 +208,7 @@ ] }, { - "key": "CopyScaleToSelectedEntitiesIndividualWorld", + "base": "CopyScaleToSelectedEntitiesIndividualWorld", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Copy Scale To Selected Entities Individual World" @@ -230,7 +230,7 @@ ] }, { - "key": "SetTransformMode", + "base": "SetTransformMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Transform Mode" @@ -252,7 +252,7 @@ ] }, { - "key": "ResetTranslationForSelectedEntitiesLocal", + "base": "ResetTranslationForSelectedEntitiesLocal", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Reset Translation For Selected Entities Local" @@ -266,7 +266,7 @@ } }, { - "key": "ResetOrientationForSelectedEntitiesLocal", + "base": "ResetOrientationForSelectedEntitiesLocal", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Reset Orientation For Selected Entities Local" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ExposureControlRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ExposureControlRequestBus.names index 89ecca21dc..35662639a7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ExposureControlRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ExposureControlRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ExposureControlRequestBus", + "base": "ExposureControlRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetEyeAdaptationSpeedDownOverride", + "base": "SetEyeAdaptationSpeedDownOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEyeAdaptationSpeedDownOverride" @@ -31,7 +31,7 @@ ] }, { - "key": "GetEnabled", + "base": "GetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnabled" @@ -53,7 +53,7 @@ ] }, { - "key": "SetEnabledOverride", + "base": "SetEnabledOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnabledOverride" @@ -75,7 +75,7 @@ ] }, { - "key": "SetManualCompensation", + "base": "SetManualCompensation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetManualCompensation" @@ -97,7 +97,7 @@ ] }, { - "key": "SetEyeAdaptationSpeedDown", + "base": "SetEyeAdaptationSpeedDown", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEyeAdaptationSpeedDown" @@ -119,7 +119,7 @@ ] }, { - "key": "GetExposureControlTypeOverride", + "base": "GetExposureControlTypeOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetExposureControlTypeOverride" @@ -141,7 +141,7 @@ ] }, { - "key": "GetHeatmapEnabled", + "base": "GetHeatmapEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetHeatmapEnabled" @@ -163,7 +163,7 @@ ] }, { - "key": "SetEyeAdaptationSpeedUpOverride", + "base": "SetEyeAdaptationSpeedUpOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEyeAdaptationSpeedUpOverride" @@ -185,7 +185,7 @@ ] }, { - "key": "SetExposureControlType", + "base": "SetExposureControlType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetExposureControlType" @@ -207,7 +207,7 @@ ] }, { - "key": "SetEnabled", + "base": "SetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnabled" @@ -229,7 +229,7 @@ ] }, { - "key": "GetExposureControlType", + "base": "GetExposureControlType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetExposureControlType" @@ -251,7 +251,7 @@ ] }, { - "key": "SetEyeAdaptationExposureMax", + "base": "SetEyeAdaptationExposureMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEyeAdaptationExposureMax" @@ -273,7 +273,7 @@ ] }, { - "key": "GetEyeAdaptationSpeedDownOverride", + "base": "GetEyeAdaptationSpeedDownOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEyeAdaptationSpeedDownOverride" @@ -295,7 +295,7 @@ ] }, { - "key": "GetManualCompensationOverride", + "base": "GetManualCompensationOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetManualCompensationOverride" @@ -317,7 +317,7 @@ ] }, { - "key": "GetHeatmapEnabledOverride", + "base": "GetHeatmapEnabledOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetHeatmapEnabledOverride" @@ -339,7 +339,7 @@ ] }, { - "key": "SetEyeAdaptationSpeedUp", + "base": "SetEyeAdaptationSpeedUp", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEyeAdaptationSpeedUp" @@ -361,7 +361,7 @@ ] }, { - "key": "GetEyeAdaptationSpeedUpOverride", + "base": "GetEyeAdaptationSpeedUpOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEyeAdaptationSpeedUpOverride" @@ -383,7 +383,7 @@ ] }, { - "key": "GetEyeAdaptationExposureMinOverride", + "base": "GetEyeAdaptationExposureMinOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEyeAdaptationExposureMinOverride" @@ -405,7 +405,7 @@ ] }, { - "key": "GetEyeAdaptationExposureMaxOverride", + "base": "GetEyeAdaptationExposureMaxOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEyeAdaptationExposureMaxOverride" @@ -427,7 +427,7 @@ ] }, { - "key": "GetEnabledOverride", + "base": "GetEnabledOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnabledOverride" @@ -449,7 +449,7 @@ ] }, { - "key": "SetExposureControlTypeOverride", + "base": "SetExposureControlTypeOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetExposureControlTypeOverride" @@ -471,7 +471,7 @@ ] }, { - "key": "GetEyeAdaptationExposureMin", + "base": "GetEyeAdaptationExposureMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEyeAdaptationExposureMin" @@ -493,7 +493,7 @@ ] }, { - "key": "GetManualCompensation", + "base": "GetManualCompensation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetManualCompensation" @@ -515,7 +515,7 @@ ] }, { - "key": "SetEyeAdaptationExposureMinOverride", + "base": "SetEyeAdaptationExposureMinOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEyeAdaptationExposureMinOverride" @@ -537,7 +537,7 @@ ] }, { - "key": "SetManualCompensationOverride", + "base": "SetManualCompensationOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetManualCompensationOverride" @@ -559,7 +559,7 @@ ] }, { - "key": "GetEyeAdaptationSpeedDown", + "base": "GetEyeAdaptationSpeedDown", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEyeAdaptationSpeedDown" @@ -581,7 +581,7 @@ ] }, { - "key": "GetEyeAdaptationSpeedUp", + "base": "GetEyeAdaptationSpeedUp", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEyeAdaptationSpeedUp" @@ -603,7 +603,7 @@ ] }, { - "key": "SetEyeAdaptationExposureMin", + "base": "SetEyeAdaptationExposureMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEyeAdaptationExposureMin" @@ -625,7 +625,7 @@ ] }, { - "key": "SetHeatmapEnabled", + "base": "SetHeatmapEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetHeatmapEnabled" @@ -647,7 +647,7 @@ ] }, { - "key": "SetEyeAdaptationExposureMaxOverride", + "base": "SetEyeAdaptationExposureMaxOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEyeAdaptationExposureMaxOverride" @@ -669,7 +669,7 @@ ] }, { - "key": "GetEyeAdaptationExposureMax", + "base": "GetEyeAdaptationExposureMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEyeAdaptationExposureMax" @@ -691,7 +691,7 @@ ] }, { - "key": "SetHeatmapEnabledOverride", + "base": "SetHeatmapEnabledOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetHeatmapEnabledOverride" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FlyCameraInputBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FlyCameraInputBus.names index 616cabcfb5..d8bba2a01f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FlyCameraInputBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FlyCameraInputBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "FlyCameraInputBus", + "base": "FlyCameraInputBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetIsEnabled", + "base": "SetIsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Enabled" @@ -32,7 +32,7 @@ ] }, { - "key": "GetIsEnabled", + "base": "GetIsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Is Enabled" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceLinearDampingRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceLinearDampingRequestBus.names index 46da76a5ca..a54c222351 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceLinearDampingRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceLinearDampingRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ForceLinearDampingRequestBus", + "base": "ForceLinearDampingRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetDamping", + "base": "SetDamping", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Damping" @@ -31,7 +31,7 @@ ] }, { - "key": "GetDamping", + "base": "GetDamping", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Damping" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceLocalSpaceRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceLocalSpaceRequestBus.names index a3dd070013..bc3416daca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceLocalSpaceRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceLocalSpaceRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ForceLocalSpaceRequestBus", + "base": "ForceLocalSpaceRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetDirection", + "base": "SetDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Direction" @@ -31,7 +31,7 @@ ] }, { - "key": "GetDirection", + "base": "GetDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Direction" @@ -53,7 +53,7 @@ ] }, { - "key": "SetMagnitude", + "base": "SetMagnitude", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Magnitude" @@ -75,7 +75,7 @@ ] }, { - "key": "GetMagnitude", + "base": "GetMagnitude", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Magnitude" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForcePointRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForcePointRequestBus.names index 767d9b1d35..0c0f959f66 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForcePointRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForcePointRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ForcePointRequestBus", + "base": "ForcePointRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetMagnitude", + "base": "SetMagnitude", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Magnitude" @@ -31,7 +31,7 @@ ] }, { - "key": "GetMagnitude", + "base": "GetMagnitude", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Magnitude" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceSimpleDragRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceSimpleDragRequestBus.names index 075aa1b6a4..a5540e1f3a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceSimpleDragRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceSimpleDragRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ForceSimpleDragRequestBus", + "base": "ForceSimpleDragRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetDensity", + "base": "SetDensity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Density" @@ -31,7 +31,7 @@ ] }, { - "key": "GetDensity", + "base": "GetDensity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Density" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceSplineFollowRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceSplineFollowRequestBus.names index 7143fd0b7f..9cf29c9653 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceSplineFollowRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceSplineFollowRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ForceSplineFollowRequestBus", + "base": "ForceSplineFollowRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetLookAhead", + "base": "GetLookAhead", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Look Ahead" @@ -31,7 +31,7 @@ ] }, { - "key": "SetLookAhead", + "base": "SetLookAhead", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Look Ahead" @@ -53,7 +53,7 @@ ] }, { - "key": "SetTargetSpeed", + "base": "SetTargetSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Target Speed" @@ -75,7 +75,7 @@ ] }, { - "key": "GetFrequency", + "base": "GetFrequency", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Frequency" @@ -97,7 +97,7 @@ ] }, { - "key": "GetDampingRatio", + "base": "GetDampingRatio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Damping Ratio" @@ -119,7 +119,7 @@ ] }, { - "key": "SetFrequency", + "base": "SetFrequency", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Frequency" @@ -141,7 +141,7 @@ ] }, { - "key": "GetTargetSpeed", + "base": "GetTargetSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Target Speed" @@ -163,7 +163,7 @@ ] }, { - "key": "SetDampingRatio", + "base": "SetDampingRatio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Damping Ratio" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceWorldSpaceRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceWorldSpaceRequestBus.names index f9c1b2dcbe..bb7f2efc9b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceWorldSpaceRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ForceWorldSpaceRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ForceWorldSpaceRequestBus", + "base": "ForceWorldSpaceRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetDirection", + "base": "SetDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Direction" @@ -31,7 +31,7 @@ ] }, { - "key": "GetDirection", + "base": "GetDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Direction" @@ -53,7 +53,7 @@ ] }, { - "key": "SetMagnitude", + "base": "SetMagnitude", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Magnitude" @@ -75,7 +75,7 @@ ] }, { - "key": "GetMagnitude", + "base": "GetMagnitude", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Magnitude" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FrameCaptureRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FrameCaptureRequestBus.names index 6d7bcf4b37..6730264044 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FrameCaptureRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FrameCaptureRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "FrameCaptureRequestBus", + "base": "FrameCaptureRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CaptureScreenshot", + "base": "CaptureScreenshot", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CaptureScreenshot" @@ -39,7 +39,7 @@ ] }, { - "key": "CaptureScreenshotWithPreview", + "base": "CaptureScreenshotWithPreview", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CaptureScreenshotWithPreview" @@ -69,7 +69,7 @@ ] }, { - "key": "CapturePassAttachment", + "base": "CapturePassAttachment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CapturePassAttachment" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GameEntityContextRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GameEntityContextRequestBus.names index bb38d2256a..fcb99ddf16 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GameEntityContextRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GameEntityContextRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GameEntityContextRequestBus", + "base": "GameEntityContextRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "DeactivateGameEntity", + "base": "DeactivateGameEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Deactivate Game Entity" @@ -33,7 +33,7 @@ ] }, { - "key": "GetEntityName", + "base": "GetEntityName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Entity Name" @@ -64,7 +64,7 @@ ] }, { - "key": "ActivateGameEntity", + "base": "ActivateGameEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Activate Game Entity" @@ -87,7 +87,7 @@ ] }, { - "key": "DestroyGameEntityAndDescendants", + "base": "DestroyGameEntityAndDescendants", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Destroy Game Entity And Descendants" @@ -110,7 +110,7 @@ ] }, { - "key": "DestroyGameEntity", + "base": "DestroyGameEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Destroy Game Entity" @@ -133,7 +133,7 @@ ] }, { - "key": "CreateGameEntity", + "base": "CreateGameEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Create Game Entity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientRequestBus.names index 166b973286..0837fb2d27 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientRequestBus", + "base": "GradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetValue", + "base": "GetValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetValue" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientSurfaceDataRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientSurfaceDataRequestBus.names index 122331320f..7e7b9260b5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientSurfaceDataRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientSurfaceDataRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientSurfaceDataRequestBus", + "base": "GradientSurfaceDataRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetThresholdMax", + "base": "GetThresholdMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetThresholdMax" @@ -31,7 +31,7 @@ ] }, { - "key": "SetThresholdMax", + "base": "SetThresholdMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetThresholdMax" @@ -53,7 +53,7 @@ ] }, { - "key": "GetNumTags", + "base": "GetNumTags", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNumTags" @@ -75,7 +75,7 @@ ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RemoveTag" @@ -97,7 +97,7 @@ ] }, { - "key": "GetThresholdMin", + "base": "GetThresholdMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetThresholdMin" @@ -119,7 +119,7 @@ ] }, { - "key": "SetShapeConstraintEntityId", + "base": "SetShapeConstraintEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetShapeConstraintEntityId" @@ -142,7 +142,7 @@ ] }, { - "key": "SetThresholdMin", + "base": "SetThresholdMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetThresholdMin" @@ -164,7 +164,7 @@ ] }, { - "key": "GetTag", + "base": "GetTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTag" @@ -194,7 +194,7 @@ ] }, { - "key": "AddTag", + "base": "AddTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddTag" @@ -216,7 +216,7 @@ ] }, { - "key": "GetShapeConstraintEntityId", + "base": "GetShapeConstraintEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetShapeConstraintEntityId" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientTransformModifierRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientTransformModifierRequestBus.names index c814d47ba7..8628947f96 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientTransformModifierRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GradientTransformModifierRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GradientTransformModifierRequestBus", + "base": "GradientTransformModifierRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetOverrideTranslate", + "base": "SetOverrideTranslate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetOverrideTranslate" @@ -31,7 +31,7 @@ ] }, { - "key": "GetRotate", + "base": "GetRotate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetRotate" @@ -53,7 +53,7 @@ ] }, { - "key": "GetBounds", + "base": "GetBounds", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetBounds" @@ -75,7 +75,7 @@ ] }, { - "key": "SetTransformType", + "base": "SetTransformType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetTransformType" @@ -97,7 +97,7 @@ ] }, { - "key": "GetOverrideTranslate", + "base": "GetOverrideTranslate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetOverrideTranslate" @@ -119,7 +119,7 @@ ] }, { - "key": "GetOverrideBounds", + "base": "GetOverrideBounds", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetOverrideBounds" @@ -141,7 +141,7 @@ ] }, { - "key": "SetRotate", + "base": "SetRotate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetRotate" @@ -163,7 +163,7 @@ ] }, { - "key": "SetOverrideScale", + "base": "SetOverrideScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetOverrideScale" @@ -185,7 +185,7 @@ ] }, { - "key": "GetScale", + "base": "GetScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetScale" @@ -207,7 +207,7 @@ ] }, { - "key": "SetScale", + "base": "SetScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetScale" @@ -229,7 +229,7 @@ ] }, { - "key": "GetIs3D", + "base": "GetIs3D", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetIs3D" @@ -251,7 +251,7 @@ ] }, { - "key": "SetShapeReference", + "base": "SetShapeReference", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetShapeReference" @@ -274,7 +274,7 @@ ] }, { - "key": "SetBounds", + "base": "SetBounds", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetBounds" @@ -296,7 +296,7 @@ ] }, { - "key": "SetFrequencyZoom", + "base": "SetFrequencyZoom", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetFrequencyZoom" @@ -318,7 +318,7 @@ ] }, { - "key": "SetWrappingType", + "base": "SetWrappingType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetWrappingType" @@ -340,7 +340,7 @@ ] }, { - "key": "GetShapeReference", + "base": "GetShapeReference", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetShapeReference" @@ -363,7 +363,7 @@ ] }, { - "key": "SetOverrideBounds", + "base": "SetOverrideBounds", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetOverrideBounds" @@ -385,7 +385,7 @@ ] }, { - "key": "GetTransformType", + "base": "GetTransformType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTransformType" @@ -407,7 +407,7 @@ ] }, { - "key": "GetOverrideScale", + "base": "GetOverrideScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetOverrideScale" @@ -429,7 +429,7 @@ ] }, { - "key": "SetIs3D", + "base": "SetIs3D", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetIs3D" @@ -451,7 +451,7 @@ ] }, { - "key": "SetAllowReference", + "base": "SetAllowReference", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAllowReference" @@ -473,7 +473,7 @@ ] }, { - "key": "SetTranslate", + "base": "SetTranslate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetTranslate" @@ -495,7 +495,7 @@ ] }, { - "key": "SetOverrideRotate", + "base": "SetOverrideRotate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetOverrideRotate" @@ -517,7 +517,7 @@ ] }, { - "key": "GetAllowReference", + "base": "GetAllowReference", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAllowReference" @@ -539,7 +539,7 @@ ] }, { - "key": "GetTranslate", + "base": "GetTranslate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTranslate" @@ -561,7 +561,7 @@ ] }, { - "key": "GetOverrideRotate", + "base": "GetOverrideRotate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetOverrideRotate" @@ -583,7 +583,7 @@ ] }, { - "key": "GetFrequencyZoom", + "base": "GetFrequencyZoom", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetFrequencyZoom" @@ -605,7 +605,7 @@ ] }, { - "key": "GetWrappingType", + "base": "GetWrappingType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetWrappingType" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GraphControllerRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GraphControllerRequestBus.names index 8622a204c2..73d3e8ea01 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GraphControllerRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GraphControllerRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GraphControllerRequestBus", + "base": "GraphControllerRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "RemoveConnection", + "base": "RemoveConnection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RemoveConnection" @@ -39,7 +39,7 @@ ] }, { - "key": "AddConnection", + "base": "AddConnection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddConnection" @@ -75,7 +75,7 @@ ] }, { - "key": "WrapNode", + "base": "WrapNode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke WrapNode" @@ -103,7 +103,7 @@ ] }, { - "key": "AddConnectionBySlotId", + "base": "AddConnectionBySlotId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddConnectionBySlotId" @@ -151,7 +151,7 @@ ] }, { - "key": "AddNode", + "base": "AddNode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddNode" @@ -188,7 +188,7 @@ ] }, { - "key": "RemoveNode", + "base": "RemoveNode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RemoveNode" @@ -218,7 +218,7 @@ ] }, { - "key": "ExtendSlot", + "base": "ExtendSlot", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ExtendSlot" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GraphManagerRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GraphManagerRequestBus.names index 13ba4a2b7c..09dc3e9b12 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GraphManagerRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GraphManagerRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GraphManagerRequestBus", + "base": "GraphManagerRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetGraph", + "base": "GetGraph", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGraph" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GridComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GridComponentRequestBus.names index d30ad4cbc3..8e5415a449 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GridComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/GridComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GridComponentRequestBus", + "base": "GridComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetSecondaryColor", + "base": "SetSecondaryColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSecondaryColor" @@ -31,7 +31,7 @@ ] }, { - "key": "GetPrimarySpacing", + "base": "GetPrimarySpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPrimarySpacing" @@ -53,7 +53,7 @@ ] }, { - "key": "GetSecondaryColor", + "base": "GetSecondaryColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSecondaryColor" @@ -75,7 +75,7 @@ ] }, { - "key": "SetAxisColor", + "base": "SetAxisColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAxisColor" @@ -97,7 +97,7 @@ ] }, { - "key": "SetPrimaryColor", + "base": "SetPrimaryColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPrimaryColor" @@ -119,7 +119,7 @@ ] }, { - "key": "GetAxisColor", + "base": "GetAxisColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAxisColor" @@ -141,7 +141,7 @@ ] }, { - "key": "SetPrimarySpacing", + "base": "SetPrimarySpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPrimarySpacing" @@ -163,7 +163,7 @@ ] }, { - "key": "GetSecondarySpacing", + "base": "GetSecondarySpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSecondarySpacing" @@ -185,7 +185,7 @@ ] }, { - "key": "SetSecondarySpacing", + "base": "SetSecondarySpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSecondarySpacing" @@ -207,7 +207,7 @@ ] }, { - "key": "SetSize", + "base": "SetSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSize" @@ -229,7 +229,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSize" @@ -251,7 +251,7 @@ ] }, { - "key": "GetPrimaryColor", + "base": "GetPrimaryColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPrimaryColor" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HDRColorGradingRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HDRColorGradingRequestBus.names index 906dd005cc..9327231516 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HDRColorGradingRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HDRColorGradingRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "HDRColorGradingRequestBus", + "base": "HDRColorGradingRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetCustomMinExposure", + "base": "SetCustomMinExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCustomMinExposure" @@ -31,7 +31,7 @@ ] }, { - "key": "GetFinalAdjustmentWeight", + "base": "GetFinalAdjustmentWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetFinalAdjustmentWeight" @@ -53,7 +53,7 @@ ] }, { - "key": "SetSmhHighlightsColor", + "base": "SetSmhHighlightsColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSmhHighlightsColor" @@ -75,7 +75,7 @@ ] }, { - "key": "SetLutResolution", + "base": "SetLutResolution", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetLutResolution" @@ -97,7 +97,7 @@ ] }, { - "key": "GetSmhMidtonesColor", + "base": "GetSmhMidtonesColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSmhMidtonesColor" @@ -119,7 +119,7 @@ ] }, { - "key": "GetSmhHighlightsEnd", + "base": "GetSmhHighlightsEnd", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSmhHighlightsEnd" @@ -141,7 +141,7 @@ ] }, { - "key": "GetCustomMinExposure", + "base": "GetCustomMinExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCustomMinExposure" @@ -163,7 +163,7 @@ ] }, { - "key": "SetSmhHighlightsEnd", + "base": "SetSmhHighlightsEnd", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSmhHighlightsEnd" @@ -185,7 +185,7 @@ ] }, { - "key": "GetChannelMixingGreen", + "base": "GetChannelMixingGreen", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetChannelMixingGreen" @@ -207,7 +207,7 @@ ] }, { - "key": "SetSmhShadowsEnd", + "base": "SetSmhShadowsEnd", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSmhShadowsEnd" @@ -229,7 +229,7 @@ ] }, { - "key": "SetSmhWeight", + "base": "SetSmhWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSmhWeight" @@ -251,7 +251,7 @@ ] }, { - "key": "SetShaperPresetType", + "base": "SetShaperPresetType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetShaperPresetType" @@ -273,7 +273,7 @@ ] }, { - "key": "GetShaperPresetType", + "base": "GetShaperPresetType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetShaperPresetType" @@ -295,7 +295,7 @@ ] }, { - "key": "SetEnabled", + "base": "SetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnabled" @@ -317,7 +317,7 @@ ] }, { - "key": "GetSmhShadowsColor", + "base": "GetSmhShadowsColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSmhShadowsColor" @@ -339,7 +339,7 @@ ] }, { - "key": "GetColorGradingPreSaturation", + "base": "GetColorGradingPreSaturation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingPreSaturation" @@ -361,7 +361,7 @@ ] }, { - "key": "GetSplitToneHighlightsColor", + "base": "GetSplitToneHighlightsColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSplitToneHighlightsColor" @@ -383,7 +383,7 @@ ] }, { - "key": "GetColorGradingHueShift", + "base": "GetColorGradingHueShift", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingHueShift" @@ -405,7 +405,7 @@ ] }, { - "key": "SetColorGradingExposure", + "base": "SetColorGradingExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingExposure" @@ -427,7 +427,7 @@ ] }, { - "key": "GetColorFilterSwatch", + "base": "GetColorFilterSwatch", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorFilterSwatch" @@ -449,7 +449,7 @@ ] }, { - "key": "GetWhiteBalanceTint", + "base": "GetWhiteBalanceTint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetWhiteBalanceTint" @@ -471,7 +471,7 @@ ] }, { - "key": "GetColorGradingExposure", + "base": "GetColorGradingExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingExposure" @@ -493,7 +493,7 @@ ] }, { - "key": "GetSmhWeight", + "base": "GetSmhWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSmhWeight" @@ -515,7 +515,7 @@ ] }, { - "key": "SetSmhMidtonesColor", + "base": "SetSmhMidtonesColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSmhMidtonesColor" @@ -537,7 +537,7 @@ ] }, { - "key": "SetChannelMixingBlue", + "base": "SetChannelMixingBlue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetChannelMixingBlue" @@ -559,7 +559,7 @@ ] }, { - "key": "GetGenerateLut", + "base": "GetGenerateLut", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGenerateLut" @@ -581,7 +581,7 @@ ] }, { - "key": "SetSplitToneBalance", + "base": "SetSplitToneBalance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSplitToneBalance" @@ -603,7 +603,7 @@ ] }, { - "key": "GetLutResolution", + "base": "GetLutResolution", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetLutResolution" @@ -625,7 +625,7 @@ ] }, { - "key": "SetColorGradingContrast", + "base": "SetColorGradingContrast", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingContrast" @@ -647,7 +647,7 @@ ] }, { - "key": "GetWhiteBalanceKelvin", + "base": "GetWhiteBalanceKelvin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetWhiteBalanceKelvin" @@ -669,7 +669,7 @@ ] }, { - "key": "SetSplitToneHighlightsColor", + "base": "SetSplitToneHighlightsColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSplitToneHighlightsColor" @@ -691,7 +691,7 @@ ] }, { - "key": "GetSmhShadowsEnd", + "base": "GetSmhShadowsEnd", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSmhShadowsEnd" @@ -713,7 +713,7 @@ ] }, { - "key": "SetSmhHighlightsStart", + "base": "SetSmhHighlightsStart", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSmhHighlightsStart" @@ -735,7 +735,7 @@ ] }, { - "key": "SetColorFilterSwatch", + "base": "SetColorFilterSwatch", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorFilterSwatch" @@ -757,7 +757,7 @@ ] }, { - "key": "GetColorGradingFilterIntensity", + "base": "GetColorGradingFilterIntensity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingFilterIntensity" @@ -779,7 +779,7 @@ ] }, { - "key": "SetWhiteBalanceWeight", + "base": "SetWhiteBalanceWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetWhiteBalanceWeight" @@ -801,7 +801,7 @@ ] }, { - "key": "SetSmhShadowsStart", + "base": "SetSmhShadowsStart", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSmhShadowsStart" @@ -823,7 +823,7 @@ ] }, { - "key": "GetChannelMixingRed", + "base": "GetChannelMixingRed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetChannelMixingRed" @@ -845,7 +845,7 @@ ] }, { - "key": "GetColorGradingFilterMultiply", + "base": "GetColorGradingFilterMultiply", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingFilterMultiply" @@ -867,7 +867,7 @@ ] }, { - "key": "SetColorGradingFilterMultiply", + "base": "SetColorGradingFilterMultiply", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingFilterMultiply" @@ -889,7 +889,7 @@ ] }, { - "key": "SetSplitToneShadowsColor", + "base": "SetSplitToneShadowsColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSplitToneShadowsColor" @@ -911,7 +911,7 @@ ] }, { - "key": "SetSplitToneWeight", + "base": "SetSplitToneWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSplitToneWeight" @@ -933,7 +933,7 @@ ] }, { - "key": "GetSplitToneShadowsColor", + "base": "GetSplitToneShadowsColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSplitToneShadowsColor" @@ -955,7 +955,7 @@ ] }, { - "key": "GetSmhHighlightsStart", + "base": "GetSmhHighlightsStart", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSmhHighlightsStart" @@ -977,7 +977,7 @@ ] }, { - "key": "SetChannelMixingRed", + "base": "SetChannelMixingRed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetChannelMixingRed" @@ -999,7 +999,7 @@ ] }, { - "key": "SetChannelMixingGreen", + "base": "SetChannelMixingGreen", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetChannelMixingGreen" @@ -1021,7 +1021,7 @@ ] }, { - "key": "SetColorGradingFilterIntensity", + "base": "SetColorGradingFilterIntensity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingFilterIntensity" @@ -1043,7 +1043,7 @@ ] }, { - "key": "SetGenerateLut", + "base": "SetGenerateLut", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetGenerateLut" @@ -1065,7 +1065,7 @@ ] }, { - "key": "SetColorAdjustmentWeight", + "base": "SetColorAdjustmentWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorAdjustmentWeight" @@ -1087,7 +1087,7 @@ ] }, { - "key": "GetSmhShadowsStart", + "base": "GetSmhShadowsStart", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSmhShadowsStart" @@ -1109,7 +1109,7 @@ ] }, { - "key": "SetSmhShadowsColor", + "base": "SetSmhShadowsColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSmhShadowsColor" @@ -1131,7 +1131,7 @@ ] }, { - "key": "SetFinalAdjustmentWeight", + "base": "SetFinalAdjustmentWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetFinalAdjustmentWeight" @@ -1153,7 +1153,7 @@ ] }, { - "key": "GetColorGradingPostSaturation", + "base": "GetColorGradingPostSaturation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingPostSaturation" @@ -1175,7 +1175,7 @@ ] }, { - "key": "SetColorGradingPreSaturation", + "base": "SetColorGradingPreSaturation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingPreSaturation" @@ -1197,7 +1197,7 @@ ] }, { - "key": "SetColorGradingHueShift", + "base": "SetColorGradingHueShift", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingHueShift" @@ -1219,7 +1219,7 @@ ] }, { - "key": "GetSplitToneBalance", + "base": "GetSplitToneBalance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSplitToneBalance" @@ -1241,7 +1241,7 @@ ] }, { - "key": "GetColorAdjustmentWeight", + "base": "GetColorAdjustmentWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorAdjustmentWeight" @@ -1263,7 +1263,7 @@ ] }, { - "key": "GetSmhHighlightsColor", + "base": "GetSmhHighlightsColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSmhHighlightsColor" @@ -1285,7 +1285,7 @@ ] }, { - "key": "GetSplitToneWeight", + "base": "GetSplitToneWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSplitToneWeight" @@ -1307,7 +1307,7 @@ ] }, { - "key": "SetColorGradingPostSaturation", + "base": "SetColorGradingPostSaturation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingPostSaturation" @@ -1329,7 +1329,7 @@ ] }, { - "key": "SetWhiteBalanceKelvin", + "base": "SetWhiteBalanceKelvin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetWhiteBalanceKelvin" @@ -1351,7 +1351,7 @@ ] }, { - "key": "GetWhiteBalanceWeight", + "base": "GetWhiteBalanceWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetWhiteBalanceWeight" @@ -1373,7 +1373,7 @@ ] }, { - "key": "GetColorGradingContrast", + "base": "GetColorGradingContrast", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingContrast" @@ -1395,7 +1395,7 @@ ] }, { - "key": "GetEnabled", + "base": "GetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnabled" @@ -1417,7 +1417,7 @@ ] }, { - "key": "GetCustomMaxExposure", + "base": "GetCustomMaxExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCustomMaxExposure" @@ -1439,7 +1439,7 @@ ] }, { - "key": "SetWhiteBalanceTint", + "base": "SetWhiteBalanceTint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetWhiteBalanceTint" @@ -1461,7 +1461,7 @@ ] }, { - "key": "GetChannelMixingBlue", + "base": "GetChannelMixingBlue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetChannelMixingBlue" @@ -1483,7 +1483,7 @@ ] }, { - "key": "SetCustomMaxExposure", + "base": "SetCustomMaxExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCustomMaxExposure" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HDRiSkyboxRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HDRiSkyboxRequestBus.names index c28a18dfc4..e93be00413 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HDRiSkyboxRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HDRiSkyboxRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "HDRiSkyboxRequestBus", + "base": "HDRiSkyboxRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetExposure", + "base": "SetExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetExposure" @@ -31,7 +31,7 @@ ] }, { - "key": "GetExposure", + "base": "GetExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetExposure" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HeightfieldProviderRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HeightfieldProviderRequestsBus.names index 0524860818..a27119f0b6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HeightfieldProviderRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/HeightfieldProviderRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "HeightfieldProviderRequestsBus", + "base": "HeightfieldProviderRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetHeightfieldMinHeight", + "base": "GetHeightfieldMinHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heightfield Min Height" @@ -31,7 +31,7 @@ ] }, { - "key": "GetHeights", + "base": "GetHeights", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heights" @@ -53,7 +53,7 @@ ] }, { - "key": "GetHeightfieldMaxHeight", + "base": "GetHeightfieldMaxHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heightfield Max Height" @@ -75,7 +75,7 @@ ] }, { - "key": "GetHeightfieldGridColumns", + "base": "GetHeightfieldGridColumns", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heightfield Grid Columns" @@ -97,7 +97,7 @@ ] }, { - "key": "GetMaterialList", + "base": "GetMaterialList", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Material List" @@ -119,7 +119,7 @@ ] }, { - "key": "GetHeightfieldTransform", + "base": "GetHeightfieldTransform", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heightfield Transform" @@ -141,7 +141,7 @@ ] }, { - "key": "GetHeightfieldGridRows", + "base": "GetHeightfieldGridRows", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heightfield Grid Rows" @@ -163,7 +163,7 @@ ] }, { - "key": "GetHeightfieldGridSpacing", + "base": "GetHeightfieldGridSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heightfield Grid Spacing" @@ -185,7 +185,7 @@ ] }, { - "key": "GetHeightfieldAabb", + "base": "GetHeightfieldAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heightfield AABB" @@ -207,7 +207,7 @@ ] }, { - "key": "GetHeightsAndMaterials", + "base": "GetHeightsAndMaterials", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Heights And Materials" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ImageBasedLightComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ImageBasedLightComponentRequestBus.names index 090c4abb00..92b7f6375b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ImageBasedLightComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ImageBasedLightComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ImageBasedLightComponentRequestBus", + "base": "ImageBasedLightComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetDiffuseImageAssetId", + "base": "GetDiffuseImageAssetId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetDiffuseImageAssetId" @@ -31,7 +31,7 @@ ] }, { - "key": "SetDiffuseImageAssetPath", + "base": "SetDiffuseImageAssetPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetDiffuseImageAssetPath" @@ -53,7 +53,7 @@ ] }, { - "key": "SetDiffuseImageAssetId", + "base": "SetDiffuseImageAssetId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetDiffuseImageAssetId" @@ -75,7 +75,7 @@ ] }, { - "key": "GetSpecularImageAssetId", + "base": "GetSpecularImageAssetId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSpecularImageAssetId" @@ -97,7 +97,7 @@ ] }, { - "key": "SetSpecularImageAssetPath", + "base": "SetSpecularImageAssetPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSpecularImageAssetPath" @@ -119,7 +119,7 @@ ] }, { - "key": "GetSpecularImageAssetPath", + "base": "GetSpecularImageAssetPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSpecularImageAssetPath" @@ -141,7 +141,7 @@ ] }, { - "key": "GetDiffuseImageAssetPath", + "base": "GetDiffuseImageAssetPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetDiffuseImageAssetPath" @@ -163,7 +163,7 @@ ] }, { - "key": "SetSpecularImageAssetId", + "base": "SetSpecularImageAssetId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSpecularImageAssetId" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ImageGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ImageGradientRequestBus.names index f4f826d7b6..12aefcefaf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ImageGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ImageGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ImageGradientRequestBus", + "base": "ImageGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetTilingX", + "base": "SetTilingX", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetTilingX" @@ -31,7 +31,7 @@ ] }, { - "key": "GetTilingX", + "base": "GetTilingX", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTilingX" @@ -53,7 +53,7 @@ ] }, { - "key": "SetImageAssetPath", + "base": "SetImageAssetPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetImageAssetPath" @@ -75,7 +75,7 @@ ] }, { - "key": "SetTilingY", + "base": "SetTilingY", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetTilingY" @@ -97,7 +97,7 @@ ] }, { - "key": "GetImageAssetPath", + "base": "GetImageAssetPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetImageAssetPath" @@ -119,7 +119,7 @@ ] }, { - "key": "GetTilingY", + "base": "GetTilingY", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTilingY" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/InputSystemRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/InputSystemRequestBus.names index 883bed230d..a30ad8ba30 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/InputSystemRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/InputSystemRequestBus.names @@ -1,25 +1,26 @@ { "entries": [ { - "key": "InputSystemRequestBus", + "base": "InputSystemRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "InputSystemRequestBus" + "name": "Input System", + "category": "Input" }, "methods": [ { - "key": "RecreateEnabledInputDevices", + "base": "RecreateEnabledInputDevices", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke RecreateEnabledInputDevices" + "tooltip": "When signaled, this will invoke Recreate Enabled Input Devices" }, "exit": { "name": "Out", - "tooltip": "Signaled after RecreateEnabledInputDevices is invoked" + "tooltip": "Signaled after Recreate Enabled Input Devices is invoked" }, "details": { - "name": "RecreateEnabledInputDevices" + "name": "Recreate Enabled Input Devices" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/InvertGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/InvertGradientRequestBus.names index 4fc68d7cd8..2fb486c743 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/InvertGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/InvertGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "InvertGradientRequestBus", + "base": "InvertGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetGradientSampler", + "base": "GetGradientSampler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGradientSampler" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LevelsGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LevelsGradientRequestBus.names index b261321830..565c85bdbc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LevelsGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LevelsGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "LevelsGradientRequestBus", + "base": "LevelsGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetOutputMax", + "base": "GetOutputMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetOutputMax" @@ -31,7 +31,7 @@ ] }, { - "key": "SetInputMax", + "base": "SetInputMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetInputMax" @@ -53,7 +53,7 @@ ] }, { - "key": "SetOutputMax", + "base": "SetOutputMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetOutputMax" @@ -75,7 +75,7 @@ ] }, { - "key": "SetInputMid", + "base": "SetInputMid", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetInputMid" @@ -97,7 +97,7 @@ ] }, { - "key": "SetOutputMin", + "base": "SetOutputMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetOutputMin" @@ -119,7 +119,7 @@ ] }, { - "key": "GetGradientSampler", + "base": "GetGradientSampler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGradientSampler" @@ -141,7 +141,7 @@ ] }, { - "key": "SetInputMin", + "base": "SetInputMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetInputMin" @@ -163,7 +163,7 @@ ] }, { - "key": "GetInputMid", + "base": "GetInputMid", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetInputMid" @@ -185,7 +185,7 @@ ] }, { - "key": "GetInputMax", + "base": "GetInputMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetInputMax" @@ -207,7 +207,7 @@ ] }, { - "key": "GetOutputMin", + "base": "GetOutputMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetOutputMin" @@ -229,7 +229,7 @@ ] }, { - "key": "GetInputMin", + "base": "GetInputMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetInputMin" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LookAt.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LookAt.names index f45199ea84..699b0195ca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LookAt.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LookAt.names @@ -1,76 +1,82 @@ { "entries": [ { - "key": "LookAt", + "base": "LookAt", "context": "EBusSender", "variant": "", "details": { - "name": "LookAt" + "name": "Look At", + "category": "Gameplay" }, "methods": [ { - "key": "SetTarget", + "base": "SetTarget", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTarget" + "tooltip": "When signaled, this will invoke Set Target" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTarget is invoked" + "tooltip": "Signaled after Set Target is invoked" }, "details": { - "name": "SetTarget" + "name": "Set Target", + "tooltip": "Set the entity to look at" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", - "tooltip": "Entity Unique Id" + "name": "Target", + "tooltip": "The entity to look at" } } ] }, { - "key": "SetTargetPosition", + "base": "SetTargetPosition", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTargetPosition" + "tooltip": "When signaled, this will invoke Set Target Position" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTargetPosition is invoked" + "tooltip": "Signaled after Set Target Position is invoked" }, "details": { - "name": "SetTargetPosition" + "name": "Set Target Position", + "tooltip": "Sets the target position to look at." }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Position", + "tooltip": "The position to look at" } } ] }, { - "key": "SetAxis", + "base": "SetAxis", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAxis" + "tooltip": "When signaled, this will invoke Set Axis" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAxis is invoked" + "tooltip": "Signaled after Set Axis is invoked" }, "details": { - "name": "SetAxis" + "name": "Set Axis", + "tooltip": "Specify the forward axis to use as reference for the look at" }, "params": [ { "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", "details": { - "name": "unsigned char" + "name": "Axis", + "tooltip": "The forward axis to use as reference" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LookModificationRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LookModificationRequestBus.names index 7e38e83e06..27cdb67ed7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LookModificationRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LookModificationRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "LookModificationRequestBus", + "base": "LookModificationRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetColorGradingLutOverride", + "base": "SetColorGradingLutOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingLutOverride" @@ -31,7 +31,7 @@ ] }, { - "key": "SetCustomMaxExposure", + "base": "SetCustomMaxExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCustomMaxExposure" @@ -53,7 +53,7 @@ ] }, { - "key": "SetCustomMinExposure", + "base": "SetCustomMinExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCustomMinExposure" @@ -75,7 +75,7 @@ ] }, { - "key": "GetCustomMinExposure", + "base": "GetCustomMinExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCustomMinExposure" @@ -97,7 +97,7 @@ ] }, { - "key": "GetColorGradingLut", + "base": "GetColorGradingLut", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingLut" @@ -119,7 +119,7 @@ ] }, { - "key": "GetColorGradingLutIntensity", + "base": "GetColorGradingLutIntensity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingLutIntensity" @@ -141,7 +141,7 @@ ] }, { - "key": "GetColorGradingLutOverride", + "base": "GetColorGradingLutOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetColorGradingLutOverride" @@ -163,7 +163,7 @@ ] }, { - "key": "SetColorGradingLut", + "base": "SetColorGradingLut", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingLut" @@ -185,7 +185,7 @@ ] }, { - "key": "SetColorGradingLutIntensity", + "base": "SetColorGradingLutIntensity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetColorGradingLutIntensity" @@ -207,7 +207,7 @@ ] }, { - "key": "SetEnabled", + "base": "SetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnabled" @@ -229,7 +229,7 @@ ] }, { - "key": "GetEnabled", + "base": "GetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnabled" @@ -251,7 +251,7 @@ ] }, { - "key": "SetShaperPresetType", + "base": "SetShaperPresetType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetShaperPresetType" @@ -273,7 +273,7 @@ ] }, { - "key": "GetShaperPresetType", + "base": "GetShaperPresetType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetShaperPresetType" @@ -295,7 +295,7 @@ ] }, { - "key": "GetCustomMaxExposure", + "base": "GetCustomMaxExposure", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCustomMaxExposure" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LyShineExamplesCppExampleBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LyShineExamplesCppExampleBus.names index 6e8aff1df5..3287656724 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LyShineExamplesCppExampleBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/LyShineExamplesCppExampleBus.names @@ -1,16 +1,16 @@ { "entries": [ { - "key": "LyShineExamplesCppExampleBus", + "base": "LyShineExamplesCppExampleBus", "context": "EBusSender", "variant": "", "details": { - "name": "LyShineExamplesCppExampleBus", - "category": "UI/LyShine Examples" + "name": "UI Examples", + "category": "UI" }, "methods": [ { - "key": "CreateCanvas", + "base": "CreateCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Create Canvas" @@ -20,12 +20,11 @@ "tooltip": "Signaled after Create Canvas is invoked" }, "details": { - "name": "Create Canvas", - "tooltip": "Creates a canvas using C++" + "name": "Create Canvas" } }, { - "key": "DestroyCanvas", + "base": "DestroyCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Destroy Canvas" @@ -35,8 +34,7 @@ "tooltip": "Signaled after Destroy Canvas is invoked" }, "details": { - "name": "Destroy Canvas", - "tooltip": "Destroys a canvas using C++" + "name": "Destroy Canvas" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/MaterialComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/MaterialComponentRequestBus.names index d5a66328b5..fa2ade0412 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/MaterialComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/MaterialComponentRequestBus.names @@ -1,31 +1,32 @@ { "entries": [ { - "key": "MaterialComponentRequestBus", + "base": "MaterialComponentRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "MaterialComponentRequestBus" + "name": "Material", + "category": "Rendering" }, "methods": [ { - "key": "GetPropertyOverrides", + "base": "GetPropertyOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrides" + "tooltip": "When signaled, this will invoke Get Property Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrides is invoked" + "tooltip": "Signaled after Get Property Overrides is invoked" }, "details": { - "name": "GetPropertyOverrides" + "name": "Get Property Overrides" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } } ], @@ -33,113 +34,113 @@ { "typeid": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "details": { - "name": "AZStd::unordered_map" + "name": "AZ Std::unordered_map" } } ] }, { - "key": "SetPropertyOverrides", + "base": "SetPropertyOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrides" + "tooltip": "When signaled, this will invoke Set Property Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrides is invoked" + "tooltip": "Signaled after Set Property Overrides is invoked" }, "details": { - "name": "SetPropertyOverrides" + "name": "Set Property Overrides" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "details": { - "name": "AZStd::unordered_map" + "name": "AZ Std::unordered_map" } } ] }, { - "key": "ClearPropertyOverride", + "base": "ClearPropertyOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearPropertyOverride" + "tooltip": "When signaled, this will invoke Clear Property Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearPropertyOverride is invoked" + "tooltip": "Signaled after Clear Property Override is invoked" }, "details": { - "name": "ClearPropertyOverride" + "name": "Clear Property Override" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ] }, { - "key": "ClearPropertyOverrides", + "base": "ClearPropertyOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearPropertyOverrides" + "tooltip": "When signaled, this will invoke Clear Property Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearPropertyOverrides is invoked" + "tooltip": "Signaled after Clear Property Overrides is invoked" }, "details": { - "name": "ClearPropertyOverrides" + "name": "Clear Property Overrides" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } } ] }, { - "key": "GetPropertyOverrideVector4", + "base": "GetPropertyOverrideVector4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideVector4" + "tooltip": "When signaled, this will invoke Get Property Override Vector 4" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideVector4 is invoked" + "tooltip": "Signaled after Get Property Override Vector 4 is invoked" }, "details": { - "name": "GetPropertyOverrideVector4" + "name": "Get Property Override Vector 4" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -147,71 +148,35 @@ { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4" + "name": "Vector 4" } } ] }, { - "key": "GetPropertyOverrideImageInstance", + "base": "GetPropertyOverrideUInt32", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideImageInstance" + "tooltip": "When signaled, this will invoke Get Property OverrideU Int 32" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideImageInstance is invoked" + "tooltip": "Signaled after Get Property OverrideU Int 32 is invoked" }, "details": { - "name": "GetPropertyOverrideImageInstance" + "name": "Get Property OverrideU Int 32" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" - } - } - ], - "results": [ - { - "typeid": "{C0311D23-97F1-556C-B6A4-ECD726543686}", - "details": { - "name": "AZStd::intrusive_ptr" - } - } - ] - }, - { - "key": "GetPropertyOverrideUInt32", - "entry": { - "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideUInt32" - }, - "exit": { - "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideUInt32 is invoked" - }, - "details": { - "name": "GetPropertyOverrideUInt32" - }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId" - } - }, - { - "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", - "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -225,29 +190,29 @@ ] }, { - "key": "GetPropertyOverrideBool", + "base": "GetPropertyOverrideBool", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideBool" + "tooltip": "When signaled, this will invoke Get Property Override Bool" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideBool is invoked" + "tooltip": "Signaled after Get Property Override Bool is invoked" }, "details": { - "name": "GetPropertyOverrideBool" + "name": "Get Property Override Bool" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -261,163 +226,141 @@ ] }, { - "key": "GetPropertyOverrideImageAsset", + "base": "SetPropertyOverrideEnum", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideImageAsset" + "tooltip": "When signaled, this will invoke Set Property Override Enum" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideImageAsset is invoked" + "tooltip": "Signaled after Set Property Override Enum is invoked" }, "details": { - "name": "GetPropertyOverrideImageAsset" + "name": "Set Property Override Enum" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } - } - ], - "results": [ + }, { - "typeid": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "Asset" + "name": "unsigned int" } } ] }, { - "key": "SetPropertyOverrideVector2", + "base": "SetPropertyOverrideVector2", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideVector2" + "tooltip": "When signaled, this will invoke Set Property Override Vector 2" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideVector2 is invoked" + "tooltip": "Signaled after Set Property Override Vector 2 is invoked" }, "details": { - "name": "SetPropertyOverrideVector2" + "name": "Set Property Override Vector 2" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Vector 2" } } ] }, { - "key": "ClearAllPropertyOverrides", + "base": "GetPropertyOverrideImage", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearAllPropertyOverrides" + "tooltip": "When signaled, this will invoke Get Property Override Image" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearAllPropertyOverrides is invoked" + "tooltip": "Signaled after Get Property Override Image is invoked" }, "details": { - "name": "ClearAllPropertyOverrides" - } - }, - { - "key": "ClearMaterialOverride", - "entry": { - "name": "In", - "tooltip": "When signaled, this will invoke ClearMaterialOverride" - }, - "exit": { - "name": "Out", - "tooltip": "Signaled after ClearMaterialOverride is invoked" - }, - "details": { - "name": "ClearMaterialOverride" + "name": "Get Property Override Image" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" - } - } - ] - }, - { - "key": "SetPropertyOverrideImageInstance", - "entry": { - "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideImageInstance" - }, - "exit": { - "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideImageInstance is invoked" - }, - "details": { - "name": "SetPropertyOverrideImageInstance" - }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } - }, + } + ], + "results": [ { - "typeid": "{C0311D23-97F1-556C-B6A4-ECD726543686}", + "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AZStd::intrusive_ptr" + "name": "Asset Id" } } ] }, { - "key": "GetMaterialSlotLabel", + "base": "ClearAllPropertyOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetMaterialSlotLabel" + "tooltip": "When signaled, this will invoke Clear All Property Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetMaterialSlotLabel is invoked" + "tooltip": "Signaled after Clear All Property Overrides is invoked" }, "details": { - "name": "GetMaterialSlotLabel" + "name": "Clear All Property Overrides" + } + }, + { + "base": "GetMaterialSlotLabel", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Material Slot Label" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Material Slot Label is invoked" + }, + "details": { + "name": "Get Material Slot Label" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } } ], @@ -425,83 +368,83 @@ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ] }, { - "key": "SetPropertyOverrideVector3", + "base": "SetPropertyOverrideVector3", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideVector3" + "tooltip": "When signaled, this will invoke Set Property Override Vector 3" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideVector3 is invoked" + "tooltip": "Signaled after Set Property Override Vector 3 is invoked" }, "details": { - "name": "SetPropertyOverrideVector3" + "name": "Set Property Override Vector 3" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Vector 3" } } ] }, { - "key": "ClearInvalidMaterialOverrides", + "base": "ClearInvalidMaterialOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearInvalidMaterialOverrides" + "tooltip": "When signaled, this will invoke Clear Invalid Material Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearInvalidMaterialOverrides is invoked" + "tooltip": "Signaled after Clear Invalid Material Overrides is invoked" }, "details": { - "name": "ClearInvalidMaterialOverrides" + "name": "Clear Invalid Material Overrides" } }, { - "key": "SetPropertyOverrideBool", + "base": "SetPropertyOverrideBool", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideBool" + "tooltip": "When signaled, this will invoke Set Property Override Bool" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideBool is invoked" + "tooltip": "Signaled after Set Property Override Bool is invoked" }, "details": { - "name": "SetPropertyOverrideBool" + "name": "Set Property Override Bool" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { @@ -513,143 +456,143 @@ ] }, { - "key": "RepairInvalidMaterialOverrides", + "base": "RepairInvalidMaterialOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke RepairInvalidMaterialOverrides" + "tooltip": "When signaled, this will invoke Repair Invalid Material Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after RepairInvalidMaterialOverrides is invoked" + "tooltip": "Signaled after Repair Invalid Material Overrides is invoked" }, "details": { - "name": "RepairInvalidMaterialOverrides" + "name": "Repair Invalid Material Overrides" } }, { - "key": "SetPropertyOverrideString", + "base": "SetPropertyOverrideString", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideString" + "tooltip": "When signaled, this will invoke Set Property Override String" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideString is invoked" + "tooltip": "Signaled after Set Property Override String is invoked" }, "details": { - "name": "SetPropertyOverrideString" + "name": "Set Property Override String" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ] }, { - "key": "SetDefaultMaterialOverride", + "base": "SetDefaultMaterialOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetDefaultMaterialOverride" + "tooltip": "When signaled, this will invoke Set Default Material Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetDefaultMaterialOverride is invoked" + "tooltip": "Signaled after Set Default Material Override is invoked" }, "details": { - "name": "SetDefaultMaterialOverride" + "name": "Set Default Material Override" }, "params": [ { "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AssetId" + "name": "Asset Id" } } ] }, { - "key": "GetDefaultMaterialOverride", + "base": "GetDefaultMaterialOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetDefaultMaterialOverride" + "tooltip": "When signaled, this will invoke Get Default Material Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetDefaultMaterialOverride is invoked" + "tooltip": "Signaled after Get Default Material Override is invoked" }, "details": { - "name": "GetDefaultMaterialOverride" + "name": "Get Default Material Override" }, "results": [ { "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AssetId" + "name": "Asset Id" } } ] }, { - "key": "SetMaterialOverrides", + "base": "SetMaterialOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetMaterialOverrides" + "tooltip": "When signaled, this will invoke Set Material Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetMaterialOverrides is invoked" + "tooltip": "Signaled after Set Material Overrides is invoked" }, "details": { - "name": "SetMaterialOverrides" + "name": "Set Material Overrides" }, "params": [ { "typeid": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "details": { - "name": "AZStd::unordered_map" + "name": "AZ Std::unordered_map" } } ] }, { - "key": "GetPropertyOverrideString", + "base": "GetPropertyOverrideString", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideString" + "tooltip": "When signaled, this will invoke Get Property Override String" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideString is invoked" + "tooltip": "Signaled after Get Property Override String is invoked" }, "details": { - "name": "GetPropertyOverrideString" + "name": "Get Property Override String" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -657,51 +600,51 @@ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ] }, { - "key": "GetMaterialOverrides", + "base": "GetMaterialOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetMaterialOverrides" + "tooltip": "When signaled, this will invoke Get Material Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetMaterialOverrides is invoked" + "tooltip": "Signaled after Get Material Overrides is invoked" }, "details": { - "name": "GetMaterialOverrides" + "name": "Get Material Overrides" }, "results": [ { "typeid": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "details": { - "name": "AZStd::unordered_map" + "name": "AZ Std::unordered_map" } } ] }, { - "key": "GetMaterialOverride", + "base": "GetMaterialOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetMaterialOverride" + "tooltip": "When signaled, this will invoke Get Material Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetMaterialOverride is invoked" + "tooltip": "Signaled after Get Material Override is invoked" }, "details": { - "name": "GetMaterialOverride" + "name": "Get Material Override" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } } ], @@ -709,69 +652,69 @@ { "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AssetId" + "name": "Asset Id" } } ] }, { - "key": "SetPropertyOverrideVector4", + "base": "SetPropertyOverrideVector4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideVector4" + "tooltip": "When signaled, this will invoke Set Property Override Vector 4" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideVector4 is invoked" + "tooltip": "Signaled after Set Property Override Vector 4 is invoked" }, "details": { - "name": "SetPropertyOverrideVector4" + "name": "Set Property Override Vector 4" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4" + "name": "Vector 4" } } ] }, { - "key": "SetPropertyOverrideUInt32", + "base": "SetPropertyOverrideUInt32", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideUInt32" + "tooltip": "When signaled, this will invoke Set Property OverrideU Int 32" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideUInt32 is invoked" + "tooltip": "Signaled after Set Property OverrideU Int 32 is invoked" }, "details": { - "name": "SetPropertyOverrideUInt32" + "name": "Set Property OverrideU Int 32" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { @@ -783,29 +726,29 @@ ] }, { - "key": "FindMaterialAssignmentId", + "base": "FindMaterialAssignmentId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke FindMaterialAssignmentId" + "tooltip": "When signaled, this will invoke Find Material Assignment Id" }, "exit": { "name": "Out", - "tooltip": "Signaled after FindMaterialAssignmentId is invoked" + "tooltip": "Signaled after Find Material Assignment Id is invoked" }, "details": { - "name": "FindMaterialAssignmentId" + "name": "Find Material Assignment Id" }, "params": [ { "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", "details": { - "name": "AZ::u64" + "name": "AZ::u 64" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -813,69 +756,35 @@ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } } ] }, { - "key": "SetPropertyOverrideImageAsset", + "base": "GetPropertyOverrideInt32", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideImageAsset" + "tooltip": "When signaled, this will invoke Get Property Override Int 32" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideImageAsset is invoked" + "tooltip": "Signaled after Get Property Override Int 32 is invoked" }, "details": { - "name": "SetPropertyOverrideImageAsset" + "name": "Get Property Override Int 32" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" - } - }, - { - "typeid": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", - "details": { - "name": "Asset" - } - } - ] - }, - { - "key": "GetPropertyOverrideInt32", - "entry": { - "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideInt32" - }, - "exit": { - "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideInt32 is invoked" - }, - "details": { - "name": "GetPropertyOverrideInt32" - }, - "params": [ - { - "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", - "details": { - "name": "AZ::Render::MaterialAssignmentId" - } - }, - { - "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", - "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -889,29 +798,65 @@ ] }, { - "key": "SetPropertyOverride", + "base": "GetPropertyOverrideEnum", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverride" + "tooltip": "When signaled, this will invoke Get Property Override Enum" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverride is invoked" + "tooltip": "Signaled after Get Property Override Enum is invoked" }, "details": { - "name": "SetPropertyOverride" + "name": "Get Property Override Enum" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" + } + } + ], + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + }, + { + "base": "SetPropertyOverride", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Set Property Override" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Set Property Override is invoked" + }, + "details": { + "name": "Set Property Override" + }, + "params": [ + { + "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", + "details": { + "name": "AZ:: Render:: Material Assignment Id" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AZ Std::string" } }, { @@ -923,51 +868,51 @@ ] }, { - "key": "GetOriginalMaterialAssignments", + "base": "GetOriginalMaterialAssignments", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetOriginalMaterialAssignments" + "tooltip": "When signaled, this will invoke Get Original Material Assignments" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetOriginalMaterialAssignments is invoked" + "tooltip": "Signaled after Get Original Material Assignments is invoked" }, "details": { - "name": "GetOriginalMaterialAssignments" + "name": "Get Original Material Assignments" }, "results": [ { "typeid": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "details": { - "name": "AZStd::unordered_map" + "name": "AZ Std::unordered_map" } } ] }, { - "key": "GetPropertyOverride", + "base": "GetPropertyOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverride" + "tooltip": "When signaled, this will invoke Get Property Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverride is invoked" + "tooltip": "Signaled after Get Property Override is invoked" }, "details": { - "name": "GetPropertyOverride" + "name": "Get Property Override" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -981,37 +926,37 @@ ] }, { - "key": "ClearModelMaterialOverrides", + "base": "ClearModelMaterialOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearModelMaterialOverrides" + "tooltip": "When signaled, this will invoke Clear Model Material Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearModelMaterialOverrides is invoked" + "tooltip": "Signaled after Clear Model Material Overrides is invoked" }, "details": { - "name": "ClearModelMaterialOverrides" + "name": "Clear Model Material Overrides" } }, { - "key": "GetDefaultMaterialAssetId", + "base": "GetDefaultMaterialAssetId", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetDefaultMaterialAssetId" + "tooltip": "When signaled, this will invoke Get Default Material Asset Id" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetDefaultMaterialAssetId is invoked" + "tooltip": "Signaled after Get Default Material Asset Id is invoked" }, "details": { - "name": "GetDefaultMaterialAssetId" + "name": "Get Default Material Asset Id" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } } ], @@ -1019,35 +964,35 @@ { "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AssetId" + "name": "Asset Id" } } ] }, { - "key": "SetPropertyOverrideInt32", + "base": "SetPropertyOverrideInt32", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideInt32" + "tooltip": "When signaled, this will invoke Set Property Override Int 32" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideInt32 is invoked" + "tooltip": "Signaled after Set Property Override Int 32 is invoked" }, "details": { - "name": "SetPropertyOverrideInt32" + "name": "Set Property Override Int 32" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { @@ -1059,29 +1004,63 @@ ] }, { - "key": "GetPropertyOverrideVector2", + "base": "SetPropertyOverrideImage", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideVector2" + "tooltip": "When signaled, this will invoke Set Property Override Image" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideVector2 is invoked" + "tooltip": "Signaled after Set Property Override Image is invoked" }, "details": { - "name": "GetPropertyOverrideVector2" + "name": "Set Property Override Image" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" + } + }, + { + "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", + "details": { + "name": "Asset Id" + } + } + ] + }, + { + "base": "GetPropertyOverrideVector2", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Property Override Vector 2" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Property Override Vector 2 is invoked" + }, + "details": { + "name": "Get Property Override Vector 2" + }, + "params": [ + { + "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", + "details": { + "name": "AZ:: Render:: Material Assignment Id" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AZ Std::string" } } ], @@ -1089,49 +1068,49 @@ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Vector 2" } } ] }, { - "key": "ClearAllMaterialOverrides", + "base": "ClearAllMaterialOverrides", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearAllMaterialOverrides" + "tooltip": "When signaled, this will invoke Clear All Material Overrides" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearAllMaterialOverrides is invoked" + "tooltip": "Signaled after Clear All Material Overrides is invoked" }, "details": { - "name": "ClearAllMaterialOverrides" + "name": "Clear All Material Overrides" } }, { - "key": "GetPropertyOverrideColor", + "base": "GetPropertyOverrideColor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideColor" + "tooltip": "When signaled, this will invoke Get Property Override Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideColor is invoked" + "tooltip": "Signaled after Get Property Override Color is invoked" }, "details": { - "name": "GetPropertyOverrideColor" + "name": "Get Property Override Color" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -1145,29 +1124,29 @@ ] }, { - "key": "SetPropertyOverrideFloat", + "base": "SetPropertyOverrideFloat", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideFloat" + "tooltip": "When signaled, this will invoke Set Property Override Float" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideFloat is invoked" + "tooltip": "Signaled after Set Property Override Float is invoked" }, "details": { - "name": "SetPropertyOverrideFloat" + "name": "Set Property Override Float" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { @@ -1179,57 +1158,101 @@ ] }, { - "key": "ClearLodMaterialOverrides", + "base": "ApplyAutomaticPropertyUpdates", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearLodMaterialOverrides" + "tooltip": "When signaled, this will invoke Apply Automatic Property Updates" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearLodMaterialOverrides is invoked" + "tooltip": "Signaled after Apply Automatic Property Updates is invoked" }, "details": { - "name": "ClearLodMaterialOverrides" - } + "name": "Apply Automatic Property Updates" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] }, { - "key": "ClearIncompatibleMaterialOverrides", + "base": "ClearMaterialOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearIncompatibleMaterialOverrides" + "tooltip": "When signaled, this will invoke Clear Material Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearIncompatibleMaterialOverrides is invoked" + "tooltip": "Signaled after Clear Material Override is invoked" }, "details": { - "name": "ClearIncompatibleMaterialOverrides" - } - }, - { - "key": "GetPropertyOverrideVector3", - "entry": { - "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideVector3" - }, - "exit": { - "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideVector3 is invoked" - }, - "details": { - "name": "GetPropertyOverrideVector3" + "name": "Clear Material Override" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" + } + } + ] + }, + { + "base": "ClearLodMaterialOverrides", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Clear Lod Material Overrides" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Clear Lod Material Overrides is invoked" + }, + "details": { + "name": "Clear Lod Material Overrides" + } + }, + { + "base": "ClearIncompatibleMaterialOverrides", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Clear Incompatible Material Overrides" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Clear Incompatible Material Overrides is invoked" + }, + "details": { + "name": "Clear Incompatible Material Overrides" + } + }, + { + "base": "GetPropertyOverrideVector3", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Property Override Vector 3" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Property Override Vector 3 is invoked" + }, + "details": { + "name": "Get Property Override Vector 3" + }, + "params": [ + { + "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", + "details": { + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], @@ -1237,49 +1260,49 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Vector 3" } } ] }, { - "key": "ClearDefaultMaterialOverride", + "base": "ClearDefaultMaterialOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ClearDefaultMaterialOverride" + "tooltip": "When signaled, this will invoke Clear Default Material Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after ClearDefaultMaterialOverride is invoked" + "tooltip": "Signaled after Clear Default Material Override is invoked" }, "details": { - "name": "ClearDefaultMaterialOverride" + "name": "Clear Default Material Override" } }, { - "key": "SetPropertyOverrideColor", + "base": "SetPropertyOverrideColor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetPropertyOverrideColor" + "tooltip": "When signaled, this will invoke Set Property Override Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetPropertyOverrideColor is invoked" + "tooltip": "Signaled after Set Property Override Color is invoked" }, "details": { - "name": "SetPropertyOverrideColor" + "name": "Set Property Override Color" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } }, { @@ -1291,57 +1314,57 @@ ] }, { - "key": "SetMaterialOverride", + "base": "SetMaterialOverride", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetMaterialOverride" + "tooltip": "When signaled, this will invoke Set Material Override" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetMaterialOverride is invoked" + "tooltip": "Signaled after Set Material Override is invoked" }, "details": { - "name": "SetMaterialOverride" + "name": "Set Material Override" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AssetId" + "name": "Asset Id" } } ] }, { - "key": "GetPropertyOverrideFloat", + "base": "GetPropertyOverrideFloat", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetPropertyOverrideFloat" + "tooltip": "When signaled, this will invoke Get Property Override Float" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetPropertyOverrideFloat is invoked" + "tooltip": "Signaled after Get Property Override Float is invoked" }, "details": { - "name": "GetPropertyOverrideFloat" + "name": "Get Property Override Float" }, "params": [ { "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", "details": { - "name": "AZ::Render::MaterialAssignmentId" + "name": "AZ:: Render:: Material Assignment Id" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "AZ Std::string" } } ], diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/MixedGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/MixedGradientRequestBus.names index 3fd5976810..5c5910b2ad 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/MixedGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/MixedGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "MixedGradientRequestBus", + "base": "MixedGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNumLayers", + "base": "GetNumLayers", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNumLayers" @@ -31,7 +31,7 @@ ] }, { - "key": "AddLayer", + "base": "AddLayer", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddLayer" @@ -45,7 +45,7 @@ } }, { - "key": "RemoveLayer", + "base": "RemoveLayer", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RemoveLayer" @@ -67,7 +67,7 @@ ] }, { - "key": "GetLayer", + "base": "GetLayer", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetLayer" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/Multi-Position Audio Requests.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/Multi-Position Audio Requests.names index 8234e0cc58..d30deb459a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/Multi-Position Audio Requests.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/Multi-Position Audio Requests.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Multi-Position Audio Requests", + "base": "Multi-Position Audio Requests", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "AddEntity", + "base": "Add Entity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Add Entity" @@ -32,7 +32,7 @@ ] }, { - "key": "RemoveEntity", + "base": "RemoveEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Remove Entity" @@ -42,7 +42,7 @@ "tooltip": "Signaled after Remove Entity is invoked" }, "details": { - "name": "RemoveEntity" + "name": "Remove Entity" }, "params": [ { @@ -55,25 +55,24 @@ ] }, { - "key": "SetBehaviorType", + "base": "SetBehaviorType", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetBehaviorType" + "tooltip": "When signaled, this will invoke Set Behavior Type" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetBehaviorType is invoked" + "tooltip": "Signaled after Set Behavior Type is invoked" }, "details": { - "name": "Set Behavior Type", - "tooltip": "0: Separate, 1: Blended" + "name": "Set Behavior Type" }, "params": [ { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "Behavior Type", - "tooltip": "0: Separate, 1: Blended" + "name": "Type", + "tooltip": "0: Separate\n1: Blended" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NavigationComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NavigationComponentRequestBus.names index 88b015bda8..d30f1a0cf6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NavigationComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NavigationComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "NavigationComponentRequestBus", + "base": "NavigationComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetAgentSpeed", + "base": "SetAgentSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Agent Speed" @@ -33,7 +33,7 @@ ] }, { - "key": "SetAgentMovementMethod", + "base": "SetAgentMovementMethod", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Agent Movement Method" @@ -56,7 +56,7 @@ ] }, { - "key": "GetAgentSpeed", + "base": "GetAgentSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAgentSpeed" @@ -78,7 +78,7 @@ ] }, { - "key": "FindPathToPosition", + "base": "FindPathToPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Path To Position" @@ -109,7 +109,7 @@ ] }, { - "key": "Stop", + "base": "Stop", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Stop" @@ -132,7 +132,7 @@ ] }, { - "key": "FindPathToEntity", + "base": "FindPathToEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Path To Entity" @@ -163,7 +163,7 @@ ] }, { - "key": "GetAgentMovementMethod", + "base": "GetAgentMovementMethod", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Agent Movement Method" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NonUniformScaleRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NonUniformScaleRequestBus.names index dee0920cf2..ac540f94df 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NonUniformScaleRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NonUniformScaleRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "NonUniformScaleRequestBus", + "base": "NonUniformScaleRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetScale", + "base": "GetScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Scale" @@ -31,7 +31,7 @@ ] }, { - "key": "SetScale", + "base": "SetScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Scale" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PerformanceStatisticsEBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PerformanceStatisticsEBus.names index a4cb505c02..a09063b01e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PerformanceStatisticsEBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PerformanceStatisticsEBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PerformanceStatisticsEBus", + "base": "PerformanceStatisticsEBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "TrackPerFrameStop", + "base": "TrackPerFrameStop", "entry": { "name": "In", "tooltip": "When signaled, this will invoke TrackPerFrameStop" @@ -23,7 +23,7 @@ } }, { - "key": "TrackPerFrameStart", + "base": "TrackPerFrameStart", "entry": { "name": "In", "tooltip": "When signaled, this will invoke TrackPerFrameStart" @@ -37,7 +37,7 @@ } }, { - "key": "TrackAccumulatedStart", + "base": "TrackAccumulatedStart", "entry": { "name": "In", "tooltip": "When signaled, this will invoke TrackAccumulatedStart" @@ -59,7 +59,7 @@ ] }, { - "key": "TrackAccumulatedStop", + "base": "TrackAccumulatedStop", "entry": { "name": "In", "tooltip": "When signaled, this will invoke TrackAccumulatedStop" @@ -73,7 +73,7 @@ } }, { - "key": "ClearSnaphotStatistics", + "base": "ClearSnaphotStatistics", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ClearSnaphotStatistics" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PerlinGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PerlinGradientRequestBus.names index 0d1e7a800e..60ac349b37 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PerlinGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PerlinGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PerlinGradientRequestBus", + "base": "PerlinGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetOctaves", + "base": "SetOctaves", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetOctaves" @@ -31,7 +31,7 @@ ] }, { - "key": "GetFrequency", + "base": "GetFrequency", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetFrequency" @@ -53,7 +53,7 @@ ] }, { - "key": "GetOctaves", + "base": "GetOctaves", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetOctaves" @@ -75,7 +75,7 @@ ] }, { - "key": "SetFrequency", + "base": "SetFrequency", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetFrequency" @@ -97,7 +97,7 @@ ] }, { - "key": "SetAmplitude", + "base": "SetAmplitude", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAmplitude" @@ -119,7 +119,7 @@ ] }, { - "key": "GetAmplitude", + "base": "GetAmplitude", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAmplitude" @@ -141,7 +141,7 @@ ] }, { - "key": "GetRandomSeed", + "base": "GetRandomSeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetRandomSeed" @@ -163,7 +163,7 @@ ] }, { - "key": "SetRandomSeed", + "base": "SetRandomSeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetRandomSeed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PhysXCharacterControllerRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PhysXCharacterControllerRequestBus.names index e4b0b6086d..dfec47011a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PhysXCharacterControllerRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PhysXCharacterControllerRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PhysXCharacterControllerRequestBus", + "base": "PhysXCharacterControllerRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetHalfForwardExtent", + "base": "GetHalfForwardExtent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Half Forward Extent" @@ -31,7 +31,7 @@ ] }, { - "key": "GetRadius", + "base": "GetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Radius" @@ -53,7 +53,7 @@ ] }, { - "key": "SetRadius", + "base": "SetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Radius" @@ -75,7 +75,7 @@ ] }, { - "key": "SetHalfForwardExtent", + "base": "SetHalfForwardExtent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Half Forward Extent" @@ -97,7 +97,7 @@ ] }, { - "key": "SetHeight", + "base": "SetHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Height" @@ -119,7 +119,7 @@ ] }, { - "key": "GetHalfSideExtent", + "base": "GetHalfSideExtent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Half Side Extent" @@ -141,7 +141,7 @@ ] }, { - "key": "GetHeight", + "base": "GetHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Height" @@ -163,7 +163,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Resize" @@ -185,7 +185,7 @@ ] }, { - "key": "SetHalfSideExtent", + "base": "SetHalfSideExtent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Half Side Extent" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PhysicalSkyRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PhysicalSkyRequestBus.names index ccd14962a2..31500b0762 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PhysicalSkyRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PhysicalSkyRequestBus.names @@ -1,25 +1,26 @@ { "entries": [ { - "key": "PhysicalSkyRequestBus", + "base": "PhysicalSkyRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "PhysicalSkyRequestBus" + "name": "Physical Sky", + "category": "Rendering" }, "methods": [ { - "key": "SetSkyIntensity", + "base": "SetSkyIntensity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetSkyIntensity" + "tooltip": "When signaled, this will invoke Set Sky Intensity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetSkyIntensity is invoked" + "tooltip": "Signaled after Set Sky Intensity is invoked" }, "details": { - "name": "SetSkyIntensity" + "name": "Set Sky Intensity" }, "params": [ { @@ -31,17 +32,17 @@ ] }, { - "key": "SetSunIntensity", + "base": "SetSunIntensity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetSunIntensity" + "tooltip": "When signaled, this will invoke Set Sun Intensity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetSunIntensity is invoked" + "tooltip": "Signaled after Set Sun Intensity is invoked" }, "details": { - "name": "SetSunIntensity" + "name": "Set Sun Intensity" }, "params": [ { @@ -53,17 +54,17 @@ ] }, { - "key": "GetSunIntensity", + "base": "GetSunIntensity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetSunIntensity" + "tooltip": "When signaled, this will invoke Get Sun Intensity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetSunIntensity is invoked" + "tooltip": "Signaled after Get Sun Intensity is invoked" }, "details": { - "name": "GetSunIntensity" + "name": "Get Sun Intensity" }, "results": [ { @@ -75,17 +76,17 @@ ] }, { - "key": "GetSunRadiusFactor", + "base": "GetSunRadiusFactor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetSunRadiusFactor" + "tooltip": "When signaled, this will invoke Get Sun Radius Factor" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetSunRadiusFactor is invoked" + "tooltip": "Signaled after Get Sun Radius Factor is invoked" }, "details": { - "name": "GetSunRadiusFactor" + "name": "Get Sun Radius Factor" }, "results": [ { @@ -97,17 +98,17 @@ ] }, { - "key": "SetSunRadiusFactor", + "base": "SetSunRadiusFactor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetSunRadiusFactor" + "tooltip": "When signaled, this will invoke Set Sun Radius Factor" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetSunRadiusFactor is invoked" + "tooltip": "Signaled after Set Sun Radius Factor is invoked" }, "details": { - "name": "SetSunRadiusFactor" + "name": "Set Sun Radius Factor" }, "params": [ { @@ -119,17 +120,17 @@ ] }, { - "key": "GetTurbidity", + "base": "GetTurbidity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTurbidity" + "tooltip": "When signaled, this will invoke Get Turbidity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTurbidity is invoked" + "tooltip": "Signaled after Get Turbidity is invoked" }, "details": { - "name": "GetTurbidity" + "name": "Get Turbidity" }, "results": [ { @@ -141,17 +142,17 @@ ] }, { - "key": "GetSkyIntensity", + "base": "GetSkyIntensity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetSkyIntensity" + "tooltip": "When signaled, this will invoke Get Sky Intensity" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetSkyIntensity is invoked" + "tooltip": "Signaled after Get Sky Intensity is invoked" }, "details": { - "name": "GetSkyIntensity" + "name": "Get Sky Intensity" }, "results": [ { @@ -163,17 +164,17 @@ ] }, { - "key": "SetTurbidity", + "base": "SetTurbidity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTurbidity" + "tooltip": "When signaled, this will invoke Set Turbidity" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTurbidity is invoked" + "tooltip": "Signaled after Set Turbidity is invoked" }, "details": { - "name": "SetTurbidity" + "name": "Set Turbidity" }, "params": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PolygonPrismShapeComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PolygonPrismShapeComponentRequestBus.names index 8cd660beaf..c8beed2423 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PolygonPrismShapeComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PolygonPrismShapeComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PolygonPrismShapeComponentRequestBus", + "base": "PolygonPrismShapeComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ClearVertices", + "base": "ClearVertices", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ClearVertices" @@ -23,7 +23,7 @@ } }, { - "key": "InsertVertex", + "base": "InsertVertex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke InsertVertex" @@ -59,7 +59,7 @@ ] }, { - "key": "UpdateVertex", + "base": "UpdateVertex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke UpdateVertex" @@ -95,7 +95,7 @@ ] }, { - "key": "AddVertex", + "base": "AddVertex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddVertex" @@ -117,7 +117,7 @@ ] }, { - "key": "GetPolygonPrism", + "base": "GetPolygonPrism", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPolygonPrism" @@ -139,7 +139,7 @@ ] }, { - "key": "SetHeight", + "base": "SetHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetHeight" @@ -161,7 +161,7 @@ ] }, { - "key": "RemoveVertex", + "base": "RemoveVertex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RemoveVertex" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PostFxLayerRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PostFxLayerRequestBus.names index c66a6e75db..7491c77700 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PostFxLayerRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PostFxLayerRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PostFxLayerRequestBus", + "base": "PostFxLayerRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetPriority", + "base": "SetPriority", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPriority" @@ -31,7 +31,7 @@ ] }, { - "key": "GetPriority", + "base": "GetPriority", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPriority" @@ -53,7 +53,7 @@ ] }, { - "key": "SetOverrideFactor", + "base": "SetOverrideFactor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetOverrideFactor" @@ -75,7 +75,7 @@ ] }, { - "key": "GetOverrideFactor", + "base": "GetOverrideFactor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetOverrideFactor" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PosterizeGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PosterizeGradientRequestBus.names index 86d059cdb7..846c1589bd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PosterizeGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PosterizeGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PosterizeGradientRequestBus", + "base": "PosterizeGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetGradientSampler", + "base": "GetGradientSampler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGradientSampler" @@ -31,7 +31,7 @@ ] }, { - "key": "GetModeType", + "base": "GetModeType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetModeType" @@ -53,7 +53,7 @@ ] }, { - "key": "SetModeType", + "base": "SetModeType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetModeType" @@ -75,7 +75,7 @@ ] }, { - "key": "SetBands", + "base": "SetBands", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetBands" @@ -97,7 +97,7 @@ ] }, { - "key": "GetBands", + "base": "GetBands", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetBands" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabLoaderScriptingBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabLoaderScriptingBus.names index 1c90afdb38..c57b57f9fe 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabLoaderScriptingBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabLoaderScriptingBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PrefabLoaderScriptingBus", + "base": "PrefabLoaderScriptingBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SaveTemplateToString", + "base": "SaveTemplateToString", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Save Template To String" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabPublicRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabPublicRequestBus.names index d38129153c..772497d00e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabPublicRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabPublicRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PrefabPublicRequestBus", + "base": "PrefabPublicRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreatePrefabInMemory", + "base": "CreatePrefabInMemory", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CreatePrefabInMemory" @@ -45,7 +45,7 @@ ] }, { - "key": "InstantiatePrefab", + "base": "InstantiatePrefab", "entry": { "name": "In", "tooltip": "When signaled, this will invoke InstantiatePrefab" @@ -88,7 +88,7 @@ ] }, { - "key": "DeleteEntitiesAndAllDescendantsInInstance", + "base": "DeleteEntitiesAndAllDescendantsInInstance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DeleteEntitiesAndAllDescendantsInInstance" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabSystemScriptingBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabSystemScriptingBus.names index 5298a19f9e..511c0523d1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabSystemScriptingBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PrefabSystemScriptingBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PrefabSystemScriptingBus", + "base": "PrefabSystemScriptingBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreatePrefab", + "base": "CreatePrefab", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Create Prefab" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ProfilingCaptureRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ProfilingCaptureRequestBus.names index a837c5d68a..12c0139b45 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ProfilingCaptureRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ProfilingCaptureRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ProfilingCaptureRequestBus", + "base": "ProfilingCaptureRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CapturePassTimestamp", + "base": "CapturePassTimestamp", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CapturePassTimestamp" @@ -39,7 +39,7 @@ ] }, { - "key": "CaptureCpuFrameTime", + "base": "CaptureCpuFrameTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CaptureCpuFrameTime" @@ -69,7 +69,7 @@ ] }, { - "key": "CapturePassPipelineStatistics", + "base": "CapturePassPipelineStatistics", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CapturePassPipelineStatistics" @@ -99,7 +99,7 @@ ] }, { - "key": "CaptureBenchmarkMetadata", + "base": "CaptureBenchmarkMetadata", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CaptureBenchmarkMetadata" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PythonEditorBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PythonEditorBus.names index 65a5b9d9b2..9cc731f39f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PythonEditorBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/PythonEditorBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "PythonEditorBus", + "base": "PythonEditorBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "ExecuteCommand", + "base": "ExecuteCommand", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ExecuteCommand" @@ -31,7 +31,7 @@ ] }, { - "key": "GetCVar", + "base": "GetCVar", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCVar" @@ -61,7 +61,7 @@ ] }, { - "key": "IsInSimulationMode", + "base": "IsInSimulationMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsInSimulationMode" @@ -83,7 +83,7 @@ ] }, { - "key": "SetAxisConstraint", + "base": "SetAxisConstraint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAxisConstraint" @@ -105,7 +105,7 @@ ] }, { - "key": "IsInGameMode", + "base": "IsInGameMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsInGameMode" @@ -127,7 +127,7 @@ ] }, { - "key": "SetCVarFromFloat", + "base": "SetCVarFromFloat", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCVarFromFloat" @@ -155,7 +155,7 @@ ] }, { - "key": "MessageBoxYesNo", + "base": "MessageBoxYesNo", "entry": { "name": "In", "tooltip": "When signaled, this will invoke MessageBoxYesNo" @@ -185,7 +185,7 @@ ] }, { - "key": "Redo", + "base": "Redo", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Redo" @@ -199,7 +199,7 @@ } }, { - "key": "SetCVarFromInteger", + "base": "SetCVarFromInteger", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCVarFromInteger" @@ -227,7 +227,7 @@ ] }, { - "key": "DrawLabel", + "base": "DrawLabel", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DrawLabel" @@ -291,7 +291,7 @@ ] }, { - "key": "Undo", + "base": "Undo", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Undo" @@ -305,7 +305,7 @@ } }, { - "key": "Log", + "base": "Log", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Log" @@ -327,7 +327,7 @@ ] }, { - "key": "ComboBox", + "base": "ComboBox", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ComboBox" @@ -369,7 +369,7 @@ ] }, { - "key": "ExitGameMode", + "base": "ExitGameMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ExitGameMode" @@ -383,7 +383,7 @@ } }, { - "key": "OpenFileBox", + "base": "OpenFileBox", "entry": { "name": "In", "tooltip": "When signaled, this will invoke OpenFileBox" @@ -405,7 +405,7 @@ ] }, { - "key": "MessageBoxOk", + "base": "MessageBoxOk", "entry": { "name": "In", "tooltip": "When signaled, this will invoke MessageBoxOk" @@ -435,7 +435,7 @@ ] }, { - "key": "RunFile", + "base": "RunFile", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RunFile" @@ -457,7 +457,7 @@ ] }, { - "key": "EditBoxCheckDataType", + "base": "EditBoxCheckDataType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke EditBoxCheckDataType" @@ -487,7 +487,7 @@ ] }, { - "key": "SetCVarFromString", + "base": "SetCVarFromString", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCVarFromString" @@ -515,7 +515,7 @@ ] }, { - "key": "RunConsole", + "base": "RunConsole", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RunConsole" @@ -537,7 +537,7 @@ ] }, { - "key": "ExitSimulationMode", + "base": "ExitSimulationMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ExitSimulationMode" @@ -551,7 +551,7 @@ } }, { - "key": "SetCVar", + "base": "SetCVar", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetCVar" @@ -579,7 +579,7 @@ ] }, { - "key": "GetPakFromFile", + "base": "GetPakFromFile", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPakFromFile" @@ -609,7 +609,7 @@ ] }, { - "key": "RunFileParameters", + "base": "RunFileParameters", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RunFileParameters" @@ -637,7 +637,7 @@ ] }, { - "key": "EnterSimulationMode", + "base": "EnterSimulationMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke EnterSimulationMode" @@ -651,7 +651,7 @@ } }, { - "key": "GetAxisConstraint", + "base": "GetAxisConstraint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAxisConstraint" @@ -673,7 +673,7 @@ ] }, { - "key": "EnterGameMode", + "base": "EnterGameMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke EnterGameMode" @@ -687,7 +687,7 @@ } }, { - "key": "MessageBoxOkCancel", + "base": "MessageBoxOkCancel", "entry": { "name": "In", "tooltip": "When signaled, this will invoke MessageBoxOkCancel" @@ -717,7 +717,7 @@ ] }, { - "key": "EditBox", + "base": "EditBox", "entry": { "name": "In", "tooltip": "When signaled, this will invoke EditBox" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/QuadShapeComponentRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/QuadShapeComponentRequestsBus.names index c6ed9646fc..41779ee90d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/QuadShapeComponentRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/QuadShapeComponentRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "QuadShapeComponentRequestsBus", + "base": "QuadShapeComponentRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetQuadHeight", + "base": "SetQuadHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetQuadHeight" @@ -31,7 +31,7 @@ ] }, { - "key": "GetQuadWidth", + "base": "GetQuadWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetQuadWidth" @@ -53,7 +53,7 @@ ] }, { - "key": "GetQuadHeight", + "base": "GetQuadHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetQuadHeight" @@ -75,7 +75,7 @@ ] }, { - "key": "GetQuadConfiguration", + "base": "GetQuadConfiguration", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetQuadConfiguration" @@ -98,7 +98,7 @@ ] }, { - "key": "SetQuadWidth", + "base": "SetQuadWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetQuadWidth" @@ -120,7 +120,7 @@ ] }, { - "key": "GetQuadOrientation", + "base": "GetQuadOrientation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetQuadOrientation" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RandomGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RandomGradientRequestBus.names index 38a342f1b4..e0632ebf07 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RandomGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RandomGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RandomGradientRequestBus", + "base": "RandomGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetRandomSeed", + "base": "GetRandomSeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetRandomSeed" @@ -31,7 +31,7 @@ ] }, { - "key": "SetRandomSeed", + "base": "SetRandomSeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetRandomSeed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RandomTimedSpawnerRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RandomTimedSpawnerRequestBus.names index 89849e3596..f1afd0e575 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RandomTimedSpawnerRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RandomTimedSpawnerRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RandomTimedSpawnerRequestBus", + "base": "RandomTimedSpawnerRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetSpawnDelay", + "base": "SetSpawnDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSpawnDelay" @@ -31,7 +31,7 @@ ] }, { - "key": "GetSpawnDelay", + "base": "GetSpawnDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSpawnDelay" @@ -53,7 +53,7 @@ ] }, { - "key": "SetSpawnDelayVariation", + "base": "SetSpawnDelayVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSpawnDelayVariation" @@ -75,7 +75,7 @@ ] }, { - "key": "SetRandomDistribution", + "base": "SetRandomDistribution", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetRandomDistribution" @@ -97,7 +97,7 @@ ] }, { - "key": "IsEnabled", + "base": "IsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsEnabled" @@ -119,7 +119,7 @@ ] }, { - "key": "Disable", + "base": "Disable", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Disable" @@ -133,7 +133,7 @@ } }, { - "key": "Toggle", + "base": "Toggle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Toggle" @@ -147,7 +147,7 @@ } }, { - "key": "GetRandomDistribution", + "base": "GetRandomDistribution", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetRandomDistribution" @@ -169,7 +169,7 @@ ] }, { - "key": "Enable", + "base": "Enable", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Enable" @@ -183,7 +183,7 @@ } }, { - "key": "GetSpawnDelayVariation", + "base": "GetSpawnDelayVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSpawnDelayVariation" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ReferenceGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ReferenceGradientRequestBus.names index c4be7ca85b..59e8d9a1ee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ReferenceGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ReferenceGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ReferenceGradientRequestBus", + "base": "ReferenceGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetGradientSampler", + "base": "GetGradientSampler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGradientSampler" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RenderMeshComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RenderMeshComponentRequestBus.names index 7323de56d7..f31b4c9ace 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RenderMeshComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RenderMeshComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RenderMeshComponentRequestBus", + "base": "RenderMeshComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetLodOverride", + "base": "GetLodOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetLodOverride" @@ -31,7 +31,7 @@ ] }, { - "key": "GetSortKey", + "base": "GetSortKey", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSortKey" @@ -53,7 +53,7 @@ ] }, { - "key": "SetQualityDecayRate", + "base": "SetQualityDecayRate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetQualityDecayRate" @@ -75,7 +75,7 @@ ] }, { - "key": "SetSortKey", + "base": "SetSortKey", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSortKey" @@ -97,7 +97,7 @@ ] }, { - "key": "GetModelAssetPath", + "base": "GetModelAssetPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetModelAssetPath" @@ -119,7 +119,7 @@ ] }, { - "key": "SetLodType", + "base": "SetLodType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetLodType" @@ -141,7 +141,7 @@ ] }, { - "key": "SetLodOverride", + "base": "SetLodOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetLodOverride" @@ -163,7 +163,7 @@ ] }, { - "key": "SetMinimumScreenCoverage", + "base": "SetMinimumScreenCoverage", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetMinimumScreenCoverage" @@ -185,7 +185,7 @@ ] }, { - "key": "SetModelAssetId", + "base": "SetModelAssetId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetModelAssetId" @@ -207,7 +207,7 @@ ] }, { - "key": "GetLodType", + "base": "GetLodType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetLodType" @@ -229,7 +229,7 @@ ] }, { - "key": "GetMinimumScreenCoverage", + "base": "GetMinimumScreenCoverage", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetMinimumScreenCoverage" @@ -251,7 +251,7 @@ ] }, { - "key": "GetModelAssetId", + "base": "GetModelAssetId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetModelAssetId" @@ -273,7 +273,7 @@ ] }, { - "key": "SetModelAssetPath", + "base": "SetModelAssetPath", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetModelAssetPath" @@ -295,7 +295,7 @@ ] }, { - "key": "GetQualityDecayRate", + "base": "GetQualityDecayRate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetQualityDecayRate" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RigidBodyRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RigidBodyRequestBus.names index 412136183b..474e3f89e3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RigidBodyRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/RigidBodyRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "RigidBodyRequestBus", + "base": "RigidBodyRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetLinearVelocity", + "base": "SetLinearVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Linear Velocity" @@ -31,7 +31,7 @@ ] }, { - "key": "SetKinematic", + "base": "SetKinematic", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Kinematic" @@ -53,7 +53,7 @@ ] }, { - "key": "SetMass", + "base": "SetMass", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Mass" @@ -75,7 +75,7 @@ ] }, { - "key": "SetGravityEnabled", + "base": "SetGravityEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Gravity Enabled" @@ -97,7 +97,7 @@ ] }, { - "key": "GetAabb", + "base": "GetAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get AABB" @@ -119,7 +119,7 @@ ] }, { - "key": "ForceAwake", + "base": "ForceAwake", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Force Awake" @@ -133,7 +133,7 @@ } }, { - "key": "SetAngularDamping", + "base": "SetAngularDamping", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Angular Damping" @@ -155,7 +155,7 @@ ] }, { - "key": "ApplyAngularImpulse", + "base": "ApplyAngularImpulse", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Apply Angular Impulse" @@ -177,7 +177,7 @@ ] }, { - "key": "DisablePhysics", + "base": "DisablePhysics", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Disable Physics" @@ -191,7 +191,7 @@ } }, { - "key": "SetSimulationEnabled", + "base": "SetSimulationEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Simulation Enabled" @@ -213,7 +213,7 @@ ] }, { - "key": "GetLinearVelocityAtWorldPoint", + "base": "GetLinearVelocityAtWorldPoint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Linear Velocity At World Point" @@ -243,7 +243,7 @@ ] }, { - "key": "SetAngularVelocity", + "base": "SetAngularVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Angular Velocity" @@ -265,7 +265,7 @@ ] }, { - "key": "SetCenterOfMassOffset", + "base": "SetCenterOfMassOffset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Center Of Mass Offset" @@ -287,7 +287,7 @@ ] }, { - "key": "IsPhysicsEnabled", + "base": "IsPhysicsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Physics Enabled" @@ -309,7 +309,7 @@ ] }, { - "key": "GetSleepThreshold", + "base": "GetSleepThreshold", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sleep Threshold" @@ -331,7 +331,7 @@ ] }, { - "key": "SetKinematicTarget", + "base": "SetKinematicTarget", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Kinematic Target" @@ -353,7 +353,7 @@ ] }, { - "key": "EnablePhysics", + "base": "EnablePhysics", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Enable Physics" @@ -367,7 +367,7 @@ } }, { - "key": "GetLinearDamping", + "base": "GetLinearDamping", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Linear Damping" @@ -389,7 +389,7 @@ ] }, { - "key": "ApplyLinearImpulseAtWorldPoint", + "base": "ApplyLinearImpulseAtWorldPoint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Apply Linear Impulse At World Point" @@ -417,7 +417,7 @@ ] }, { - "key": "GetCenterOfMassWorld", + "base": "GetCenterOfMassWorld", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Center Of Mass World" @@ -439,7 +439,7 @@ ] }, { - "key": "GetCenterOfMassLocal", + "base": "GetCenterOfMassLocal", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Center Of Mass Local" @@ -461,7 +461,7 @@ ] }, { - "key": "SetLinearDamping", + "base": "SetLinearDamping", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Linear Damping" @@ -483,7 +483,7 @@ ] }, { - "key": "GetAngularDamping", + "base": "GetAngularDamping", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Angular Damping" @@ -505,7 +505,7 @@ ] }, { - "key": "GetLinearVelocity", + "base": "GetLinearVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Linear Velocity" @@ -527,7 +527,7 @@ ] }, { - "key": "IsAwake", + "base": "IsAwake", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Awake" @@ -549,7 +549,7 @@ ] }, { - "key": "IsGravityEnabled", + "base": "IsGravityEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Gravity Enabled" @@ -571,7 +571,7 @@ ] }, { - "key": "GetInverseMass", + "base": "GetInverseMass", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Inverse Mass" @@ -593,7 +593,7 @@ ] }, { - "key": "SetSleepThreshold", + "base": "SetSleepThreshold", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sleep Threshold" @@ -615,7 +615,7 @@ ] }, { - "key": "ForceAsleep", + "base": "ForceAsleep", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Force Asleep" @@ -629,7 +629,7 @@ } }, { - "key": "GetMass", + "base": "GetMass", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Mass" @@ -651,7 +651,7 @@ ] }, { - "key": "IsKinematic", + "base": "IsKinematic", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Kinematic" @@ -673,7 +673,7 @@ ] }, { - "key": "ApplyLinearImpulse", + "base": "ApplyLinearImpulse", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Apply Linear Impulse" @@ -695,7 +695,7 @@ ] }, { - "key": "GetAngularVelocity", + "base": "GetAngularVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Angular Velocity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SceneRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SceneRequestBus.names index 346e1aa1f4..475200cf08 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SceneRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SceneRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SceneRequestBus", + "base": "SceneRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CutSelection", + "base": "CutSelection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CutSelection" @@ -23,7 +23,7 @@ } }, { - "key": "CopySelection", + "base": "CopySelection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CopySelection" @@ -37,7 +37,7 @@ } }, { - "key": "Paste", + "base": "Paste", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Paste" @@ -51,7 +51,7 @@ } }, { - "key": "DuplicateSelection", + "base": "DuplicateSelection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DuplicateSelection" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SequenceComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SequenceComponentRequestBus.names index f51021f9b4..d7fc9033e4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SequenceComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SequenceComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SequenceComponentRequestBus", + "base": "SequenceComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetPlaySpeed", + "base": "GetPlaySpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetPlaySpeed" @@ -33,7 +33,7 @@ ] }, { - "key": "JumpToTime", + "base": "JumpToTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Jump To Time" @@ -56,7 +56,7 @@ ] }, { - "key": "Resume", + "base": "Resume", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Resume" @@ -71,7 +71,7 @@ } }, { - "key": "JumpToEnd", + "base": "JumpToEnd", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Jump To End" @@ -86,7 +86,7 @@ } }, { - "key": "GetCurrentPlayTime", + "base": "GetCurrentPlayTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Current Play Time" @@ -109,7 +109,7 @@ ] }, { - "key": "Pause", + "base": "Pause", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Pause" @@ -124,7 +124,7 @@ } }, { - "key": "PlayBetweenTimes", + "base": "PlayBetweenTimes", "entry": { "name": "In", "tooltip": "When signaled, this will invoke PlayBetweenTimes" @@ -153,7 +153,7 @@ ] }, { - "key": "Stop", + "base": "Stop", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Stop" @@ -168,7 +168,7 @@ } }, { - "key": "JumpToBeginning", + "base": "JumpToBeginning", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Jump To Beginning" @@ -183,7 +183,7 @@ } }, { - "key": "Play", + "base": "Play", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Play" @@ -198,7 +198,7 @@ } }, { - "key": "SetPlaySpeed", + "base": "SetPlaySpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetPlaySpeed" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ShapeAreaFalloffGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ShapeAreaFalloffGradientRequestBus.names index 9c42af794f..7e786744b9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ShapeAreaFalloffGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ShapeAreaFalloffGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeAreaFalloffGradientRequestBus", + "base": "ShapeAreaFalloffGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetFalloffType", + "base": "SetFalloffType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetFalloffType" @@ -31,7 +31,7 @@ ] }, { - "key": "SetFalloffWidth", + "base": "SetFalloffWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetFalloffWidth" @@ -53,7 +53,7 @@ ] }, { - "key": "GetFalloffType", + "base": "GetFalloffType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetFalloffType" @@ -75,7 +75,7 @@ ] }, { - "key": "GetFalloffWidth", + "base": "GetFalloffWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetFalloffWidth" @@ -97,7 +97,7 @@ ] }, { - "key": "SetShapeEntityId", + "base": "SetShapeEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetShapeEntityId" @@ -120,7 +120,7 @@ ] }, { - "key": "GetShapeEntityId", + "base": "GetShapeEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetShapeEntityId" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ShapeComponentRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ShapeComponentRequestsBus.names index f58f8d8dce..c3bc56c418 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ShapeComponentRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ShapeComponentRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeComponentRequestsBus", + "base": "ShapeComponentRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "DistanceSquaredFromPoint", + "base": "DistanceSquaredFromPoint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Distance Squared From Point" @@ -43,7 +43,7 @@ ] }, { - "key": "DistanceFromPoint", + "base": "DistanceFromPoint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Distance From Point" @@ -76,7 +76,7 @@ ] }, { - "key": "IsPointInside", + "base": "IsPointInside", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Point Inside" @@ -109,7 +109,7 @@ ] }, { - "key": "GetEncompassingAabb", + "base": "GetEncompassingAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Encompassing Aabb" @@ -132,7 +132,7 @@ ] }, { - "key": "GetShapeType", + "base": "GetShapeType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Shape Type" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimpleMotionComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimpleMotionComponentRequestBus.names index 182ded9e83..fb09158ca4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimpleMotionComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimpleMotionComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SimpleMotionComponentRequestBus", + "base": "SimpleMotionComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "BlendOutTime", + "base": "BlendOutTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Blend Out Time" @@ -32,7 +32,7 @@ ] }, { - "key": "GetBlendInTime", + "base": "GetBlendInTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Blend In Time" @@ -54,7 +54,7 @@ ] }, { - "key": "PlayMotion", + "base": "PlayMotion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke PlayMotion" @@ -68,7 +68,7 @@ } }, { - "key": "GetMotion", + "base": "GetMotion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetMotion" @@ -90,7 +90,7 @@ ] }, { - "key": "GetBlendOutTime", + "base": "GetBlendOutTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Blend Out Time" @@ -112,7 +112,7 @@ ] }, { - "key": "ReverseMotion", + "base": "ReverseMotion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Reverse Motion" @@ -134,7 +134,7 @@ ] }, { - "key": "GetPlaySpeed", + "base": "GetPlaySpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Play Speed" @@ -156,7 +156,7 @@ ] }, { - "key": "GetPlayTime", + "base": "GetPlayTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Play Time" @@ -178,7 +178,7 @@ ] }, { - "key": "RetargetMotion", + "base": "RetargetMotion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Retarget Motion" @@ -200,7 +200,7 @@ ] }, { - "key": "SetPlaySpeed", + "base": "SetPlaySpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Play Speed" @@ -222,7 +222,7 @@ ] }, { - "key": "Motion", + "base": "Motion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Motion" @@ -244,7 +244,7 @@ ] }, { - "key": "BlendInTime", + "base": "BlendInTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Blend In Time" @@ -266,7 +266,7 @@ ] }, { - "key": "GetLoopMotion", + "base": "GetLoopMotion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Loop Motion" @@ -288,7 +288,7 @@ ] }, { - "key": "PlayTime", + "base": "PlayTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Play Time" @@ -310,7 +310,7 @@ ] }, { - "key": "LoopMotion", + "base": "LoopMotion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Loop Motion" @@ -332,7 +332,7 @@ ] }, { - "key": "MirrorMotion", + "base": "MirrorMotion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Mirror Motion" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimpleStateComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimpleStateComponentRequestBus.names index c234b3503c..4dbabdfb97 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimpleStateComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimpleStateComponentRequestBus.names @@ -1,123 +1,116 @@ { "entries": [ { - "key": "SimpleStateComponentRequestBus", + "base": "SimpleStateComponentRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "SimpleStateComponentRequestBus", + "name": "Simple State", "category": "Gameplay" }, "methods": [ { - "key": "GetNumStates", + "base": "GetNumStates", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get State Count" + "tooltip": "When signaled, this will invoke Get Num States" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get State Count is invoked" + "tooltip": "Signaled after Get Num States is invoked" }, "details": { - "name": "Get State Count", - "tooltip": "Returns the number of states" + "name": "Get Num States" }, "results": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "State Count" } } ] }, { - "key": "SetToLastState", + "base": "SetToLastState", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set To Last" + "tooltip": "When signaled, this will invoke Set To Last State" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set To Last is invoked" + "tooltip": "Signaled after Set To Last State is invoked" }, "details": { - "name": "Set To Last", - "tooltip": "Sets to the last state in the state list" + "name": "Set To Last State" } }, { - "key": "SetToPreviousState", + "base": "SetToPreviousState", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set To Previous" + "tooltip": "When signaled, this will invoke Set To Previous State" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set To Previous is invoked" + "tooltip": "Signaled after Set To Previous State is invoked" }, "details": { - "name": "Set To Previous", - "tooltip": "Sets to the previous state in the state list from the current state" + "name": "Set To Previous State" } }, { - "key": "SetToFirstState", + "base": "SetToFirstState", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set To First" + "tooltip": "When signaled, this will invoke Set To First State" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set To First is invoked" + "tooltip": "Signaled after Set To First State is invoked" }, "details": { - "name": "Set To First", - "tooltip": "Sets to the first state in the state list" + "name": "Set To First State" } }, { - "key": "SetToNextState", + "base": "SetToNextState", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set To Next" + "tooltip": "When signaled, this will invoke Set To Next State" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set To Next is invoked" + "tooltip": "Signaled after Set To Next State is invoked" }, "details": { - "name": "Set To Next", - "tooltip": "Sets to the next state in the state list from the current state" + "name": "Set To Next State" } }, { - "key": "SetStateByIndex", + "base": "SetStateByIndex", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set State by Index" + "tooltip": "When signaled, this will invoke Set State By Index" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set State by Index is invoked" + "tooltip": "Signaled after Set State By Index is invoked" }, "details": { - "name": "Set State by Index", - "tooltip": "Sets the state by index" + "name": "Set State By Index" }, "params": [ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "Index", - "tooltip": "State index" + "name": "Index" } } ] }, { - "key": "SetState", + "base": "SetState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set State" @@ -127,21 +120,19 @@ "tooltip": "Signaled after Set State is invoked" }, "details": { - "name": "Set State", - "tooltip": "Sets the state by name" + "name": "Set State" }, "params": [ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "Name", - "tooltip": "State name" + "name": "State Name" } } ] }, { - "key": "GetCurrentState", + "base": "GetCurrentState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Current State" @@ -151,14 +142,13 @@ "tooltip": "Signaled after Get Current State is invoked" }, "details": { - "name": "Get Current State", - "tooltip": "Gets the current state name" + "name": "Get Current State" }, "results": [ { "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", "details": { - "name": "char" + "name": "State Name" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimulatedBodyComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimulatedBodyComponentRequestBus.names index fc0cf7e60d..e646bbef2f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimulatedBodyComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SimulatedBodyComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SimulatedBodyComponentRequestBus", + "base": "SimulatedBodyComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetAabb", + "base": "GetAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get AABB" @@ -31,7 +31,7 @@ ] }, { - "key": "IsPhysicsEnabled", + "base": "IsPhysicsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsPhysicsEnabled" @@ -53,7 +53,7 @@ ] }, { - "key": "RayCast", + "base": "RayCast", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RayCast" @@ -84,7 +84,7 @@ ] }, { - "key": "DisablePhysics", + "base": "DisablePhysics", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Disable Physics" @@ -98,7 +98,7 @@ } }, { - "key": "EnablePhysics", + "base": "EnablePhysics", "entry": { "name": "In", "tooltip": "When signaled, this will invoke EnablePhysics" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SkyBoxFogRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SkyBoxFogRequestBus.names index 477f4fc85c..9a283e509f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SkyBoxFogRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SkyBoxFogRequestBus.names @@ -1,25 +1,26 @@ { "entries": [ { - "key": "SkyBoxFogRequestBus", + "base": "SkyBoxFogRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "SkyBoxFogRequestBus" + "name": "Sky Box Fog", + "category": "Rendering" }, "methods": [ { - "key": "GetBottomHeight", + "base": "GetBottomHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetBottomHeight" + "tooltip": "When signaled, this will invoke Get Bottom Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetBottomHeight is invoked" + "tooltip": "Signaled after Get Bottom Height is invoked" }, "details": { - "name": "GetBottomHeight" + "name": "Get Bottom Height" }, "results": [ { @@ -31,17 +32,17 @@ ] }, { - "key": "GetColor", + "base": "GetColor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetColor" + "tooltip": "When signaled, this will invoke Get Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetColor is invoked" + "tooltip": "Signaled after Get Color is invoked" }, "details": { - "name": "GetColor" + "name": "Get Color" }, "results": [ { @@ -53,17 +54,17 @@ ] }, { - "key": "SetBottomHeight", + "base": "SetBottomHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetBottomHeight" + "tooltip": "When signaled, this will invoke Set Bottom Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetBottomHeight is invoked" + "tooltip": "Signaled after Set Bottom Height is invoked" }, "details": { - "name": "SetBottomHeight" + "name": "Set Bottom Height" }, "params": [ { @@ -75,17 +76,17 @@ ] }, { - "key": "SetColor", + "base": "SetColor", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetColor" + "tooltip": "When signaled, this will invoke Set Color" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetColor is invoked" + "tooltip": "Signaled after Set Color is invoked" }, "details": { - "name": "SetColor" + "name": "Set Color" }, "params": [ { @@ -97,17 +98,17 @@ ] }, { - "key": "GetTopHeight", + "base": "GetTopHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTopHeight" + "tooltip": "When signaled, this will invoke Get Top Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTopHeight is invoked" + "tooltip": "Signaled after Get Top Height is invoked" }, "details": { - "name": "GetTopHeight" + "name": "Get Top Height" }, "results": [ { @@ -119,17 +120,17 @@ ] }, { - "key": "IsEnabled", + "base": "IsEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsEnabled" + "tooltip": "When signaled, this will invoke Is Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsEnabled is invoked" + "tooltip": "Signaled after Is Enabled is invoked" }, "details": { - "name": "IsEnabled" + "name": "Is Enabled" }, "results": [ { @@ -141,17 +142,17 @@ ] }, { - "key": "SetTopHeight", + "base": "SetTopHeight", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTopHeight" + "tooltip": "When signaled, this will invoke Set Top Height" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTopHeight is invoked" + "tooltip": "Signaled after Set Top Height is invoked" }, "details": { - "name": "SetTopHeight" + "name": "Set Top Height" }, "params": [ { @@ -163,17 +164,17 @@ ] }, { - "key": "SetEnabled", + "base": "SetEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEnabled" + "tooltip": "When signaled, this will invoke Set Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEnabled is invoked" + "tooltip": "Signaled after Set Enabled is invoked" }, "details": { - "name": "SetEnabled" + "name": "Set Enabled" }, "params": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SliceRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SliceRequestBus.names index 1794a68d04..309ad9b20c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SliceRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SliceRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SliceRequestBus", + "base": "SliceRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "CreateNewSlice", + "base": "CreateNewSlice", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CreateNewSlice" @@ -46,7 +46,7 @@ ] }, { - "key": "InstantiateSliceFromAssetId", + "base": "InstantiateSliceFromAssetId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke InstantiateSliceFromAssetId" @@ -82,7 +82,7 @@ ] }, { - "key": "SetSliceDynamic", + "base": "SetSliceDynamic", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSliceDynamic" @@ -110,7 +110,7 @@ ] }, { - "key": "ShowPushDialog", + "base": "ShowPushDialog", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ShowPushDialog" @@ -132,7 +132,7 @@ ] }, { - "key": "IsSliceDynamic", + "base": "IsSliceDynamic", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsSliceDynamic" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SmoothStepGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SmoothStepGradientRequestBus.names index 2c51d78c35..8d3bbb5337 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SmoothStepGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SmoothStepGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SmoothStepGradientRequestBus", + "base": "SmoothStepGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetGradientSampler", + "base": "GetGradientSampler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGradientSampler" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SmoothStepRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SmoothStepRequestBus.names index 719b54ec45..28b91a0a34 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SmoothStepRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SmoothStepRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SmoothStepRequestBus", + "base": "SmoothStepRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetFallOffStrength", + "base": "GetFallOffStrength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetFallOffStrength" @@ -31,7 +31,7 @@ ] }, { - "key": "SetFallOffStrength", + "base": "SetFallOffStrength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetFallOffStrength" @@ -53,7 +53,7 @@ ] }, { - "key": "GetFallOffRange", + "base": "GetFallOffRange", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetFallOffRange" @@ -75,7 +75,7 @@ ] }, { - "key": "SetFallOffMidpoint", + "base": "SetFallOffMidpoint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetFallOffMidpoint" @@ -97,7 +97,7 @@ ] }, { - "key": "SetFallOffRange", + "base": "SetFallOffRange", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetFallOffRange" @@ -119,7 +119,7 @@ ] }, { - "key": "GetFallOffMidpoint", + "base": "GetFallOffMidpoint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetFallOffMidpoint" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SpawnerComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SpawnerComponentRequestBus.names index aa1b298bde..b9aeb3538a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SpawnerComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SpawnerComponentRequestBus.names @@ -1,134 +1,134 @@ { "entries": [ { - "key": "SpawnerComponentRequestBus", + "base": "SpawnerComponentRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "SpawnerComponentRequestBus", + "name": "Spawner", "category": "Gameplay" }, "methods": [ { - "key": "SetDynamicSlice", + "base": "SetDynamicSlice", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetDynamicSlice" + "tooltip": "When signaled, this will invoke Set Dynamic Slice" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetDynamicSlice is invoked" + "tooltip": "Signaled after Set Dynamic Slice is invoked" }, "details": { - "name": "SetDynamicSlice" + "name": "Set Dynamic Slice" }, "params": [ { "typeid": "{652ED536-3402-439B-AEBE-4A5DBC554085}", "details": { - "name": "AssetId" + "name": "Asset Id" } } ] }, { - "key": "GetCurrentlySpawnedSlices", + "base": "GetCurrentlySpawnedSlices", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCurrentlySpawnedSlices" + "tooltip": "When signaled, this will invoke Get Currently Spawned Slices" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCurrentlySpawnedSlices is invoked" + "tooltip": "Signaled after Get Currently Spawned Slices is invoked" }, "details": { - "name": "GetCurrentlySpawnedSlices" + "name": "Get Currently Spawned Slices" }, "results": [ { "typeid": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "details": { - "name": "" + "name": "Spawned Slices" } } ] }, { - "key": "HasAnyCurrentlySpawnedSlices", + "base": "HasAnyCurrentlySpawnedSlices", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke HasAnyCurrentlySpawnedSlices" + "tooltip": "When signaled, this will invoke Has Any Currently Spawned Slices" }, "exit": { "name": "Out", - "tooltip": "Signaled after HasAnyCurrentlySpawnedSlices is invoked" + "tooltip": "Signaled after Has Any Currently Spawned Slices is invoked" }, "details": { - "name": "HasAnyCurrentlySpawnedSlices" + "name": "Has Any Currently Spawned Slices" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Result" } } ] }, { - "key": "GetAllCurrentlySpawnedEntities", + "base": "GetAllCurrentlySpawnedEntities", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAllCurrentlySpawnedEntities" + "tooltip": "When signaled, this will invoke Get All Currently Spawned Entities" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAllCurrentlySpawnedEntities is invoked" + "tooltip": "Signaled after Get All Currently Spawned Entities is invoked" }, "details": { - "name": "GetAllCurrentlySpawnedEntities" + "name": "Get All Currently Spawned Entities" }, "results": [ { "typeid": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "details": { - "name": "AZStd::vector" + "name": "Spawned Entities" } } ] }, { - "key": "DestroyAllSpawnedSlices", + "base": "DestroyAllSpawnedSlices", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke DestroyAllSpawnedSlices" + "tooltip": "When signaled, this will invoke Destroy All Spawned Slices" }, "exit": { "name": "Out", - "tooltip": "Signaled after DestroyAllSpawnedSlices is invoked" + "tooltip": "Signaled after Destroy All Spawned Slices is invoked" }, "details": { - "name": "DestroyAllSpawnedSlices" + "name": "Destroy All Spawned Slices" } }, { - "key": "GetCurrentEntitiesFromSpawnedSlice", + "base": "GetCurrentEntitiesFromSpawnedSlice", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCurrentEntitiesFromSpawnedSlice" + "tooltip": "When signaled, this will invoke Get Current Entities From Spawned Slice" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCurrentEntitiesFromSpawnedSlice is invoked" + "tooltip": "Signaled after Get Current Entities From Spawned Slice is invoked" }, "details": { - "name": "GetCurrentEntitiesFromSpawnedSlice" + "name": "Get Current Entities From Spawned Slice" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket" + "name": "Slice Instantiation Ticket" } } ], @@ -136,57 +136,57 @@ { "typeid": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "details": { - "name": "AZStd::vector" + "name": "Entities" } } ] }, { - "key": "DestroySpawnedSlice", + "base": "DestroySpawnedSlice", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke DestroySpawnedSlice" + "tooltip": "When signaled, this will invoke Destroy Spawned Slice" }, "exit": { "name": "Out", - "tooltip": "Signaled after DestroySpawnedSlice is invoked" + "tooltip": "Signaled after Destroy Spawned Slice is invoked" }, "details": { - "name": "DestroySpawnedSlice" + "name": "Destroy Spawned Slice" }, "params": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket" + "name": "Slice Instantiation Ticket" } } ] }, { - "key": "IsReadyToSpawn", + "base": "IsReadyToSpawn", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsReadyToSpawn" + "tooltip": "When signaled, this will invoke Is Ready To Spawn" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsReadyToSpawn is invoked" + "tooltip": "Signaled after Is Ready To Spawn is invoked" }, "details": { - "name": "IsReadyToSpawn" + "name": "Is Ready To Spawn" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Ready" } } ] }, { - "key": "SpawnRelative", + "base": "SpawnRelative", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Spawn Relative" @@ -196,15 +196,13 @@ "tooltip": "Signaled after Spawn Relative is invoked" }, "details": { - "name": "Spawn Relative", - "tooltip": "Spawn the selected slice at the entity's location with the provided relative offset" + "name": "Spawn Relative" }, "params": [ { "typeid": "{5D9958E9-9F1E-4985-B532-FFFDE75FEDFD}", "details": { - "name": "Offset", - "tooltip": "The relative offset from the entity" + "name": "Transform" } } ], @@ -212,14 +210,13 @@ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket", - "tooltip": "The relative offset from the entity" + "name": "Slice Instantiation Ticket" } } ] }, { - "key": "Spawn", + "base": "Spawn", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Spawn" @@ -229,20 +226,19 @@ "tooltip": "Signaled after Spawn is invoked" }, "details": { - "name": "Spawn", - "tooltip": "Spawns the designated slice at the entity's location" + "name": "Spawn" }, "results": [ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket" + "name": "Slice Instantiation Ticket" } } ] }, { - "key": "SpawnAbsolute", + "base": "SpawnAbsolute", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Spawn Absolute" @@ -252,15 +248,13 @@ "tooltip": "Signaled after Spawn Absolute is invoked" }, "details": { - "name": "Spawn Absolute", - "tooltip": "Spawn the selected slice at an absolute position" + "name": "Spawn Absolute" }, "params": [ { "typeid": "{5D9958E9-9F1E-4985-B532-FFFDE75FEDFD}", "details": { - "name": "Position", - "tooltip": "The absolute position where the entity should spawn" + "name": "Transform" } } ], @@ -268,8 +262,7 @@ { "typeid": "{E6E7C0C5-07C9-44BB-A38C-930431948667}", "details": { - "name": "SliceInstantiationTicket", - "tooltip": "The absolute position where the entity should spawn" + "name": "Slice Instantiation Ticket" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SphereShapeComponentRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SphereShapeComponentRequestsBus.names index cc5521d074..170c490510 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SphereShapeComponentRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SphereShapeComponentRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SphereShapeComponentRequestsBus", + "base": "SphereShapeComponentRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetSphereConfiguration", + "base": "GetSphereConfiguration", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Configuration" @@ -34,7 +34,7 @@ ] }, { - "key": "SetRadius", + "base": "SetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Radius" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SplineComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SplineComponentRequestBus.names index 067ddc4c0b..7f4e164a01 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SplineComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SplineComponentRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SplineComponentRequestBus", + "base": "SplineComponentRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ClearVertices", + "base": "ClearVertices", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Clear Vertices" @@ -24,7 +24,7 @@ } }, { - "key": "RemoveVertex", + "base": "RemoveVertex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Remove Vertex" @@ -54,7 +54,7 @@ ] }, { - "key": "UpdateVertex", + "base": "UpdateVertex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Update Vertex" @@ -90,7 +90,7 @@ ] }, { - "key": "AddVertex", + "base": "AddVertex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Add Vertex" @@ -112,7 +112,7 @@ ] }, { - "key": "GetSpline", + "base": "GetSpline", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Spline" @@ -134,7 +134,7 @@ ] }, { - "key": "SetClosed", + "base": "SetClosed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Closed" @@ -156,7 +156,7 @@ ] }, { - "key": "InsertVertex", + "base": "InsertVertex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Insert Vertex" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SsaoRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SsaoRequestBus.names index a0d6ebdedd..1d58037a04 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SsaoRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SsaoRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SsaoRequestBus", + "base": "SsaoRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetBlurDepthFalloffStrength", + "base": "SetBlurDepthFalloffStrength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetBlurDepthFalloffStrength" @@ -31,7 +31,7 @@ ] }, { - "key": "SetBlurDepthFalloffThreshold", + "base": "SetBlurDepthFalloffThreshold", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetBlurDepthFalloffThreshold" @@ -53,7 +53,7 @@ ] }, { - "key": "SetEnableDownsampleOverride", + "base": "SetEnableDownsampleOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnableDownsampleOverride" @@ -75,7 +75,7 @@ ] }, { - "key": "SetEnableBlurOverride", + "base": "SetEnableBlurOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnableBlurOverride" @@ -97,7 +97,7 @@ ] }, { - "key": "GetEnabledOverride", + "base": "GetEnabledOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnabledOverride" @@ -119,7 +119,7 @@ ] }, { - "key": "GetSamplingRadius", + "base": "GetSamplingRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSamplingRadius" @@ -141,7 +141,7 @@ ] }, { - "key": "SetBlurDepthFalloffStrengthOverride", + "base": "SetBlurDepthFalloffStrengthOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetBlurDepthFalloffStrengthOverride" @@ -163,7 +163,7 @@ ] }, { - "key": "GetBlurDepthFalloffThresholdOverride", + "base": "GetBlurDepthFalloffThresholdOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetBlurDepthFalloffThresholdOverride" @@ -185,7 +185,7 @@ ] }, { - "key": "GetBlurDepthFalloffThreshold", + "base": "GetBlurDepthFalloffThreshold", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetBlurDepthFalloffThreshold" @@ -207,7 +207,7 @@ ] }, { - "key": "GetSamplingRadiusOverride", + "base": "GetSamplingRadiusOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSamplingRadiusOverride" @@ -229,7 +229,7 @@ ] }, { - "key": "SetStrengthOverride", + "base": "SetStrengthOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetStrengthOverride" @@ -251,7 +251,7 @@ ] }, { - "key": "GetStrength", + "base": "GetStrength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetStrength" @@ -273,7 +273,7 @@ ] }, { - "key": "GetEnabled", + "base": "GetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnabled" @@ -295,7 +295,7 @@ ] }, { - "key": "GetEnableDownsample", + "base": "GetEnableDownsample", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnableDownsample" @@ -317,7 +317,7 @@ ] }, { - "key": "GetBlurDepthFalloffStrength", + "base": "GetBlurDepthFalloffStrength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetBlurDepthFalloffStrength" @@ -339,7 +339,7 @@ ] }, { - "key": "SetBlurConstFalloff", + "base": "SetBlurConstFalloff", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetBlurConstFalloff" @@ -361,7 +361,7 @@ ] }, { - "key": "GetEnableDownsampleOverride", + "base": "GetEnableDownsampleOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnableDownsampleOverride" @@ -383,7 +383,7 @@ ] }, { - "key": "GetEnableBlurOverride", + "base": "GetEnableBlurOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnableBlurOverride" @@ -405,7 +405,7 @@ ] }, { - "key": "SetSamplingRadiusOverride", + "base": "SetSamplingRadiusOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSamplingRadiusOverride" @@ -427,7 +427,7 @@ ] }, { - "key": "SetSamplingRadius", + "base": "SetSamplingRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSamplingRadius" @@ -449,7 +449,7 @@ ] }, { - "key": "SetStrength", + "base": "SetStrength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetStrength" @@ -471,7 +471,7 @@ ] }, { - "key": "SetEnabled", + "base": "SetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnabled" @@ -493,7 +493,7 @@ ] }, { - "key": "GetStrengthOverride", + "base": "GetStrengthOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetStrengthOverride" @@ -515,7 +515,7 @@ ] }, { - "key": "GetEnableBlur", + "base": "GetEnableBlur", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetEnableBlur" @@ -537,7 +537,7 @@ ] }, { - "key": "SetEnableDownsample", + "base": "SetEnableDownsample", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnableDownsample" @@ -559,7 +559,7 @@ ] }, { - "key": "SetBlurDepthFalloffThresholdOverride", + "base": "SetBlurDepthFalloffThresholdOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetBlurDepthFalloffThresholdOverride" @@ -581,7 +581,7 @@ ] }, { - "key": "SetBlurConstFalloffOverride", + "base": "SetBlurConstFalloffOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetBlurConstFalloffOverride" @@ -603,7 +603,7 @@ ] }, { - "key": "GetBlurConstFalloff", + "base": "GetBlurConstFalloff", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetBlurConstFalloff" @@ -625,7 +625,7 @@ ] }, { - "key": "SetEnabledOverride", + "base": "SetEnabledOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnabledOverride" @@ -647,7 +647,7 @@ ] }, { - "key": "SetEnableBlur", + "base": "SetEnableBlur", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetEnableBlur" @@ -669,7 +669,7 @@ ] }, { - "key": "GetBlurConstFalloffOverride", + "base": "GetBlurConstFalloffOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetBlurConstFalloffOverride" @@ -691,7 +691,7 @@ ] }, { - "key": "GetBlurDepthFalloffStrengthOverride", + "base": "GetBlurDepthFalloffStrengthOverride", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetBlurDepthFalloffStrengthOverride" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceAltitudeGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceAltitudeGradientRequestBus.names index a8ff8ab8fd..ff2d814e8b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceAltitudeGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceAltitudeGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceAltitudeGradientRequestBus", + "base": "SurfaceAltitudeGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNumTags", + "base": "GetNumTags", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNumTags" @@ -31,7 +31,7 @@ ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RemoveTag" @@ -53,7 +53,7 @@ ] }, { - "key": "GetAltitudeMax", + "base": "GetAltitudeMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAltitudeMax" @@ -75,7 +75,7 @@ ] }, { - "key": "SetAltitudeMin", + "base": "SetAltitudeMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAltitudeMin" @@ -97,7 +97,7 @@ ] }, { - "key": "GetAltitudeMin", + "base": "GetAltitudeMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAltitudeMin" @@ -119,7 +119,7 @@ ] }, { - "key": "GetTag", + "base": "GetTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTag" @@ -149,7 +149,7 @@ ] }, { - "key": "AddTag", + "base": "AddTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddTag" @@ -171,7 +171,7 @@ ] }, { - "key": "SetShapeEntityId", + "base": "SetShapeEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetShapeEntityId" @@ -194,7 +194,7 @@ ] }, { - "key": "SetAltitudeMax", + "base": "SetAltitudeMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAltitudeMax" @@ -216,7 +216,7 @@ ] }, { - "key": "GetShapeEntityId", + "base": "GetShapeEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetShapeEntityId" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceMaskGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceMaskGradientRequestBus.names index b71f80ddf9..13ea976480 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceMaskGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceMaskGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceMaskGradientRequestBus", + "base": "SurfaceMaskGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetNumTags", + "base": "GetNumTags", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNumTags" @@ -31,7 +31,7 @@ ] }, { - "key": "GetTag", + "base": "GetTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTag" @@ -61,7 +61,7 @@ ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RemoveTag" @@ -83,7 +83,7 @@ ] }, { - "key": "AddTag", + "base": "AddTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddTag" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceSlopeGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceSlopeGradientRequestBus.names index 9b0cd3802c..8db09b1773 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceSlopeGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/SurfaceSlopeGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SurfaceSlopeGradientRequestBus", + "base": "SurfaceSlopeGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "SetRampType", + "base": "SetRampType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetRampType" @@ -31,7 +31,7 @@ ] }, { - "key": "GetTag", + "base": "GetTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTag" @@ -61,7 +61,7 @@ ] }, { - "key": "AddTag", + "base": "AddTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AddTag" @@ -83,7 +83,7 @@ ] }, { - "key": "SetSlopeMax", + "base": "SetSlopeMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSlopeMax" @@ -105,7 +105,7 @@ ] }, { - "key": "GetNumTags", + "base": "GetNumTags", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNumTags" @@ -127,7 +127,7 @@ ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke RemoveTag" @@ -149,7 +149,7 @@ ] }, { - "key": "GetRampType", + "base": "GetRampType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetRampType" @@ -171,7 +171,7 @@ ] }, { - "key": "GetSlopeMax", + "base": "GetSlopeMax", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSlopeMax" @@ -193,7 +193,7 @@ ] }, { - "key": "SetSlopeMin", + "base": "SetSlopeMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSlopeMin" @@ -215,7 +215,7 @@ ] }, { - "key": "GetSlopeMin", + "base": "GetSlopeMin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSlopeMin" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TagComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TagComponentRequestBus.names index b0b63a23ed..f1d8a7bc31 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TagComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TagComponentRequestBus.names @@ -1,16 +1,16 @@ { "entries": [ { - "key": "TagComponentRequestBus", + "base": "TagComponentRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "TagComponentRequestBus", - "category": "Gameplay" + "name": "Requests", + "category": "Gameplay/Tag" }, "methods": [ { - "key": "HasTag", + "base": "HasTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Has Tag" @@ -20,15 +20,13 @@ "tooltip": "Signaled after Has Tag is invoked" }, "details": { - "name": "Has Tag", - "tooltip": "Returns true if an entity has a specified tag" + "name": "Has Tag" }, "params": [ { "typeid": "{9F4E062E-06A0-46D4-85DF-E0DA96467D3A}", "details": { - "name": "Tag", - "tooltip": "The tag to check if the source entity has" + "name": "Tag" } } ], @@ -36,14 +34,13 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool", - "tooltip": "The tag to check if the source entity has" + "name": "Has Tag" } } ] }, { - "key": "AddTag", + "base": "AddTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Add Tag" @@ -53,21 +50,19 @@ "tooltip": "Signaled after Add Tag is invoked" }, "details": { - "name": "Add Tag", - "tooltip": "Adds a tag to an entity if it didn't already have it" + "name": "Add Tag" }, "params": [ { "typeid": "{9F4E062E-06A0-46D4-85DF-E0DA96467D3A}", "details": { - "name": "Tag", - "tooltip": "The tag to add to the entity" + "name": "Tag" } } ] }, { - "key": "RemoveTag", + "base": "RemoveTag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Remove Tag" @@ -77,15 +72,13 @@ "tooltip": "Signaled after Remove Tag is invoked" }, "details": { - "name": "Remove Tag", - "tooltip": "Removes a tag from an entity if it had it" + "name": "Remove Tag" }, "params": [ { "typeid": "{9F4E062E-06A0-46D4-85DF-E0DA96467D3A}", "details": { - "name": "Tag", - "tooltip": "The tag to remove from the entity" + "name": "Tag" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TagGlobalRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TagGlobalRequestBus.names index fa31042580..8136a2c947 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TagGlobalRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TagGlobalRequestBus.names @@ -1,16 +1,16 @@ { "entries": [ { - "key": "TagGlobalRequestBus", + "base": "TagGlobalRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "TagGlobalRequestBus", - "category": "Gameplay" + "name": "Requests", + "category": "Gameplay/Tag" }, "methods": [ { - "key": "RequestTaggedEntities", + "base": "RequestTaggedEntities", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Request Tagged Entities" @@ -20,14 +20,13 @@ "tooltip": "Signaled after Request Tagged Entities is invoked" }, "details": { - "name": "Request Tagged Entities", - "tooltip": "Returns the first responding entity that has a specified Tag" + "name": "Request Tagged Entities" }, "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/TerrainDataRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TerrainDataRequestBus.names index f7ea7fa19e..50b0c9794b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TerrainDataRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TerrainDataRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TerrainDataRequestBus", + "base": "TerrainDataRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetIsHoleFromFloats", + "base": "GetIsHoleFromFloats", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Is Hole From Floats" @@ -52,7 +52,7 @@ ] }, { - "key": "GetSurfaceWeightsFromVector2", + "base": "GetSurfaceWeightsFromVector2", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Surface Weights From Vector2" @@ -93,7 +93,7 @@ ] }, { - "key": "GetSurfaceWeights", + "base": "GetSurfaceWeights", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSurfaceWeights" @@ -134,7 +134,7 @@ ] }, { - "key": "GetMaxSurfaceWeight", + "base": "GetMaxSurfaceWeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Max Surface Weight" @@ -177,7 +177,7 @@ ] }, { - "key": "GetSurfacePointFromVector2", + "base": "GetSurfacePointFromVector2", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Surface Point From Vector2" @@ -218,7 +218,7 @@ ] }, { - "key": "GetTerrainHeightQueryResolution", + "base": "GetTerrainHeightQueryResolution", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Terrain Height Query Resolution" @@ -240,7 +240,7 @@ ] }, { - "key": "GetNormal", + "base": "GetNormal", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Normal" @@ -283,7 +283,7 @@ ] }, { - "key": "GetMaxSurfaceWeightFromVector2", + "base": "GetMaxSurfaceWeightFromVector2", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Max Surface Weight From Vector2" @@ -326,7 +326,7 @@ ] }, { - "key": "GetTerrainAabb", + "base": "GetTerrainAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Terrain AABB" @@ -348,7 +348,7 @@ ] }, { - "key": "GetHeight", + "base": "GetHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Height" @@ -391,7 +391,7 @@ ] }, { - "key": "GetSurfacePoint", + "base": "GetSurfacePoint", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Surface Point" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ThresholdGradientRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ThresholdGradientRequestBus.names index 0ad659c691..b5eceff545 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ThresholdGradientRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ThresholdGradientRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ThresholdGradientRequestBus", + "base": "ThresholdGradientRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetThreshold", + "base": "GetThreshold", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetThreshold" @@ -31,7 +31,7 @@ ] }, { - "key": "SetThreshold", + "base": "SetThreshold", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetThreshold" @@ -53,7 +53,7 @@ ] }, { - "key": "GetGradientSampler", + "base": "GetGradientSampler", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetGradientSampler" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TickRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TickRequestBus.names index 414e66e411..6c8e29af70 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TickRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TickRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TickRequestBus", + "base": "TickRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetTickDeltaTime", + "base": "GetTickDeltaTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Tick Delta Time" @@ -31,7 +31,7 @@ ] }, { - "key": "GetTimeAtCurrentTick", + "base": "GetTimeAtCurrentTick", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Time At Current Tick" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ToolsApplicationRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ToolsApplicationRequestBus.names index 055931428e..148c96005b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ToolsApplicationRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ToolsApplicationRequestBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ToolsApplicationRequestBus", + "base": "ToolsApplicationRequestBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "MarkEntitySelected", + "base": "MarkEntitySelected", "entry": { "name": "In", "tooltip": "When signaled, this will invoke MarkEntitySelected" @@ -32,7 +32,7 @@ ] }, { - "key": "IsSelected", + "base": "IsSelected", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsSelected" @@ -63,7 +63,7 @@ ] }, { - "key": "GetSelectedEntitiesCount", + "base": "GetSelectedEntitiesCount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSelectedEntitiesCount" @@ -85,7 +85,7 @@ ] }, { - "key": "GetSelectedEntities", + "base": "GetSelectedEntities", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetSelectedEntities" @@ -107,7 +107,7 @@ ] }, { - "key": "DeleteEntitiesAndAllDescendants", + "base": "DeleteEntitiesAndAllDescendants", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DeleteEntitiesAndAllDescendants" @@ -129,7 +129,7 @@ ] }, { - "key": "GetExistingEntity", + "base": "GetExistingEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetExistingEntity" @@ -160,7 +160,7 @@ ] }, { - "key": "SetSelectedEntities", + "base": "SetSelectedEntities", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetSelectedEntities" @@ -182,7 +182,7 @@ ] }, { - "key": "MarkEntitiesSelected", + "base": "MarkEntitiesSelected", "entry": { "name": "In", "tooltip": "When signaled, this will invoke MarkEntitiesSelected" @@ -204,7 +204,7 @@ ] }, { - "key": "MarkEntityDeselected", + "base": "MarkEntityDeselected", "entry": { "name": "In", "tooltip": "When signaled, this will invoke MarkEntityDeselected" @@ -227,7 +227,7 @@ ] }, { - "key": "GetCurrentLevelEntityId", + "base": "GetCurrentLevelEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetCurrentLevelEntityId" @@ -250,7 +250,7 @@ ] }, { - "key": "AreAnyEntitiesSelected", + "base": "AreAnyEntitiesSelected", "entry": { "name": "In", "tooltip": "When signaled, this will invoke AreAnyEntitiesSelected" @@ -272,7 +272,7 @@ ] }, { - "key": "CreateNewEntityAtPosition", + "base": "CreateNewEntityAtPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CreateNewEntityAtPosition" @@ -310,7 +310,7 @@ ] }, { - "key": "DeleteEntityAndAllDescendants", + "base": "DeleteEntityAndAllDescendants", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DeleteEntityAndAllDescendants" @@ -333,7 +333,7 @@ ] }, { - "key": "CreateNewEntity", + "base": "CreateNewEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke CreateNewEntity" @@ -365,7 +365,7 @@ ] }, { - "key": "EntityExists", + "base": "EntityExists", "entry": { "name": "In", "tooltip": "When signaled, this will invoke EntityExists" @@ -396,7 +396,7 @@ ] }, { - "key": "DeleteEntityById", + "base": "DeleteEntityById", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DeleteEntityById" @@ -419,7 +419,7 @@ ] }, { - "key": "DeleteEntities", + "base": "DeleteEntities", "entry": { "name": "In", "tooltip": "When signaled, this will invoke DeleteEntities" @@ -441,7 +441,7 @@ ] }, { - "key": "MarkEntitiesDeselected", + "base": "MarkEntitiesDeselected", "entry": { "name": "In", "tooltip": "When signaled, this will invoke MarkEntitiesDeselected" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TransformBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TransformBus.names index 9ee4d4d58f..2d8bc4ede4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TransformBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TransformBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TransformBus", + "base": "TransformBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetLocalUniformScale", + "base": "SetLocalUniformScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Uniform Scale" @@ -32,7 +32,7 @@ ] }, { - "key": "SetLocalRotationQuaternion", + "base": "SetLocalRotationQuaternion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Rotation Quaternion" @@ -54,7 +54,7 @@ ] }, { - "key": "GetLocalRotation", + "base": "GetLocalRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Rotation" @@ -76,7 +76,7 @@ ] }, { - "key": "GetLocalTM", + "base": "GetLocalTM", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Transform" @@ -99,7 +99,7 @@ ] }, { - "key": "GetEntityAndAllDescendants", + "base": "GetEntityAndAllDescendants", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Entity And All Descendants" @@ -121,7 +121,7 @@ ] }, { - "key": "SetLocalZ", + "base": "SetLocalZ", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Z" @@ -143,7 +143,7 @@ ] }, { - "key": "GetAllDescendants", + "base": "GetAllDescendants", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get All Descendants" @@ -165,7 +165,7 @@ ] }, { - "key": "GetLocalAndWorld", + "base": "GetLocalAndWorld", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local And World" @@ -193,7 +193,7 @@ ] }, { - "key": "RotateAroundLocalZ", + "base": "RotateAroundLocalZ", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Rotate Around Local Z" @@ -215,7 +215,7 @@ ] }, { - "key": "GetWorldRotationQuaternion", + "base": "GetWorldRotationQuaternion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get World Rotation Quaternion" @@ -237,7 +237,7 @@ ] }, { - "key": "RotateAroundLocalX", + "base": "RotateAroundLocalX", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Rotate Around Local X" @@ -259,7 +259,7 @@ ] }, { - "key": "SetParent", + "base": "SetParent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parent" @@ -282,7 +282,7 @@ ] }, { - "key": "GetLocalZ", + "base": "GetLocalZ", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Z" @@ -304,7 +304,7 @@ ] }, { - "key": "SetLocalRotation", + "base": "SetLocalRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Rotation" @@ -326,7 +326,7 @@ ] }, { - "key": "SetLocalX", + "base": "SetLocalX", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local X" @@ -348,7 +348,7 @@ ] }, { - "key": "GetLocalRotationQuaternion", + "base": "GetLocalRotationQuaternion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Rotation Quaternion" @@ -370,7 +370,7 @@ ] }, { - "key": "GetWorldX", + "base": "GetWorldX", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get World X" @@ -392,7 +392,7 @@ ] }, { - "key": "SetWorldTranslation", + "base": "SetWorldTranslation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set World Translation" @@ -414,7 +414,7 @@ ] }, { - "key": "MoveEntity", + "base": "MoveEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Move Entity" @@ -436,7 +436,7 @@ ] }, { - "key": "GetChildren", + "base": "GetChildren", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Children" @@ -458,7 +458,7 @@ ] }, { - "key": "SetParentRelative", + "base": "SetParentRelative", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Parent Relative" @@ -481,7 +481,7 @@ ] }, { - "key": "SetWorldTM", + "base": "SetWorldTM", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set World Transform" @@ -503,7 +503,7 @@ ] }, { - "key": "SetWorldRotationQuaternion", + "base": "SetWorldRotationQuaternion", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set World Rotation Quaternion" @@ -525,7 +525,7 @@ ] }, { - "key": "SetWorldX", + "base": "SetWorldX", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set World X" @@ -547,7 +547,7 @@ ] }, { - "key": "GetWorldY", + "base": "GetWorldY", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get World Y" @@ -569,7 +569,7 @@ ] }, { - "key": "GetLocalUniformScale", + "base": "GetLocalUniformScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Uniform Scale" @@ -591,7 +591,7 @@ ] }, { - "key": "SetWorldZ", + "base": "SetWorldZ", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set World Z" @@ -613,7 +613,7 @@ ] }, { - "key": "SetLocalTM", + "base": "SetLocalTM", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Transform" @@ -635,7 +635,7 @@ ] }, { - "key": "SetLocalTranslation", + "base": "SetLocalTranslation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Translation" @@ -657,7 +657,7 @@ ] }, { - "key": "GetLocalScale", + "base": "GetLocalScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Scale" @@ -679,7 +679,7 @@ ] }, { - "key": "SetWorldY", + "base": "SetWorldY", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set World Y" @@ -701,7 +701,7 @@ ] }, { - "key": "RotateAroundLocalY", + "base": "RotateAroundLocalY", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Rotate Around Local Y" @@ -723,7 +723,7 @@ ] }, { - "key": "GetLocalTranslation", + "base": "GetLocalTranslation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Translation" @@ -745,7 +745,7 @@ ] }, { - "key": "GetWorldRotation", + "base": "GetWorldRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get World Rotation" @@ -768,7 +768,7 @@ ] }, { - "key": "GetWorldZ", + "base": "GetWorldZ", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get World Z" @@ -790,7 +790,7 @@ ] }, { - "key": "GetLocalY", + "base": "GetLocalY", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Y" @@ -812,7 +812,7 @@ ] }, { - "key": "GetWorldTranslation", + "base": "GetWorldTranslation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get World Translation" @@ -834,7 +834,7 @@ ] }, { - "key": "SetLocalY", + "base": "SetLocalY", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Y" @@ -856,7 +856,7 @@ ] }, { - "key": "GetLocalX", + "base": "GetLocalX", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local X" @@ -878,7 +878,7 @@ ] }, { - "key": "GetWorldTM", + "base": "GetWorldTM", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get World Transform" @@ -900,7 +900,7 @@ ] }, { - "key": "GetParentId", + "base": "GetParentId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parent Id" @@ -923,7 +923,7 @@ ] }, { - "key": "IsStaticTransform", + "base": "IsStaticTransform", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Static Transform" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TubeShapeComponentRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TubeShapeComponentRequestsBus.names index b038d91560..87b0584dbf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TubeShapeComponentRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/TubeShapeComponentRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "TubeShapeComponentRequestsBus", + "base": "TubeShapeComponentRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetVariableRadius", + "base": "GetVariableRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetVariableRadius" @@ -39,7 +39,7 @@ ] }, { - "key": "SetVariableRadius", + "base": "SetVariableRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetVariableRadius" @@ -67,7 +67,7 @@ ] }, { - "key": "SetRadius", + "base": "SetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetRadius" @@ -89,7 +89,7 @@ ] }, { - "key": "GetRadius", + "base": "GetRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetRadius" @@ -111,7 +111,7 @@ ] }, { - "key": "GetTotalRadius", + "base": "GetTotalRadius", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTotalRadius" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiAnimationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiAnimationBus.names index 5618698361..8681104e2c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiAnimationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiAnimationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiAnimationBus", + "base": "UiAnimationBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ResetSequence", + "base": "ResetSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Reset Sequence" @@ -34,7 +34,7 @@ ] }, { - "key": "GetSequencePlayingSpeed", + "base": "GetSequencePlayingSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sequence Playing Speed" @@ -67,7 +67,7 @@ ] }, { - "key": "GetSequencePlayingTime", + "base": "GetSequencePlayingTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sequence Playing Time" @@ -100,7 +100,7 @@ ] }, { - "key": "AbortSequence", + "base": "AbortSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Abort Sequence" @@ -124,7 +124,7 @@ ] }, { - "key": "IsSequencePlaying", + "base": "IsSequencePlaying", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Sequence Playing" @@ -157,7 +157,7 @@ ] }, { - "key": "GetSequenceLength", + "base": "GetSequenceLength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sequence Length" @@ -190,7 +190,7 @@ ] }, { - "key": "StopSequence", + "base": "StopSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Stop Sequence" @@ -214,7 +214,7 @@ ] }, { - "key": "PlaySequenceRange", + "base": "PlaySequenceRange", "entry": { "name": "In", "tooltip": "When signaled, this will invoke PlaySequenceRange" @@ -248,7 +248,7 @@ ] }, { - "key": "PauseSequence", + "base": "PauseSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Pause Sequence" @@ -272,7 +272,7 @@ ] }, { - "key": "ResumeSequence", + "base": "ResumeSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Resume Sequence" @@ -296,7 +296,7 @@ ] }, { - "key": "StartSequence", + "base": "StartSequence", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Start Sequence" @@ -320,7 +320,7 @@ ] }, { - "key": "SetSequencePlayingSpeed", + "base": "SetSequencePlayingSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sequence Playing Speed" @@ -351,7 +351,7 @@ ] }, { - "key": "SetSequenceStopBehavior", + "base": "SetSequenceStopBehavior", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sequence Stop Behavior" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiButtonBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiButtonBus.names index 93c278b55f..b3228e764f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiButtonBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiButtonBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiButtonBus", + "base": "UiButtonBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetOnClickActionName", + "base": "GetOnClickActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get On Click Action Name" @@ -33,7 +33,7 @@ ] }, { - "key": "SetOnClickActionName", + "base": "SetOnClickActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set On Click Action Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasAssetRefBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasAssetRefBus.names index 7e1cc1941a..74538a9aed 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasAssetRefBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasAssetRefBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasAssetRefBus", + "base": "UiCanvasAssetRefBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "LoadCanvas", + "base": "LoadCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Load Canvas" @@ -34,7 +34,7 @@ ] }, { - "key": "UnloadCanvas", + "base": "UnloadCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Unload Canvas" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasBus.names index 5a039e9720..9403cf7cfb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasBus", + "base": "UiCanvasBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ForceHoverInteractable", + "base": "ForceHoverInteractable", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Force Hover Interactable" @@ -34,7 +34,7 @@ ] }, { - "key": "GetNavigationRepeatPeriod", + "base": "GetNavigationRepeatPeriod", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNavigationRepeatPeriod" @@ -56,7 +56,7 @@ ] }, { - "key": "GetNavigationRepeatDelay", + "base": "GetNavigationRepeatDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNavigationRepeatDelay" @@ -78,7 +78,7 @@ ] }, { - "key": "GetHoverInteractable", + "base": "GetHoverInteractable", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Hover Interactable" @@ -102,7 +102,7 @@ ] }, { - "key": "SetNavigationThreshold", + "base": "SetNavigationThreshold", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetNavigationThreshold" @@ -124,7 +124,7 @@ ] }, { - "key": "SetIsConsumingAllInputEvents", + "base": "SetIsConsumingAllInputEvents", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Consuming All Input Events" @@ -148,7 +148,7 @@ ] }, { - "key": "SetDrawOrder", + "base": "SetDrawOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Draw Order" @@ -172,7 +172,7 @@ ] }, { - "key": "GetIsPositionalInputSupported", + "base": "GetIsPositionalInputSupported", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Positional Input Supported" @@ -195,7 +195,7 @@ ] }, { - "key": "RecomputeChangedLayouts", + "base": "RecomputeChangedLayouts", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Recompute Changed Layouts" @@ -210,7 +210,7 @@ } }, { - "key": "SetRenderTargetName", + "base": "SetRenderTargetName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Render Target Name" @@ -234,7 +234,7 @@ ] }, { - "key": "GetTooltipDisplayElement", + "base": "GetTooltipDisplayElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Tooltip Display Element" @@ -258,7 +258,7 @@ ] }, { - "key": "GetIsNavigationSupported", + "base": "GetIsNavigationSupported", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Navigation Supported" @@ -281,7 +281,7 @@ ] }, { - "key": "SetNavigationRepeatPeriod", + "base": "SetNavigationRepeatPeriod", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetNavigationRepeatPeriod" @@ -303,7 +303,7 @@ ] }, { - "key": "GetRenderTargetName", + "base": "GetRenderTargetName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Render Target Name" @@ -326,7 +326,7 @@ ] }, { - "key": "FindElementByName", + "base": "FindElementByName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Element By Name" @@ -359,7 +359,7 @@ ] }, { - "key": "SetTooltipDisplayElement", + "base": "SetTooltipDisplayElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Tooltip Display Element" @@ -383,7 +383,7 @@ ] }, { - "key": "GetChildElement", + "base": "GetChildElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Child Element" @@ -416,7 +416,7 @@ ] }, { - "key": "GetKeepLoadedOnLevelUnload", + "base": "GetKeepLoadedOnLevelUnload", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Keep Loaded On Level Unload" @@ -439,7 +439,7 @@ ] }, { - "key": "GetIsTextPixelAligned", + "base": "GetIsTextPixelAligned", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Text Pixel Aligned" @@ -462,7 +462,7 @@ ] }, { - "key": "GetIsConsumingAllInputEvents", + "base": "GetIsConsumingAllInputEvents", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Consuming All Input Events" @@ -485,7 +485,7 @@ ] }, { - "key": "GetNavigationThreshold", + "base": "GetNavigationThreshold", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetNavigationThreshold" @@ -507,7 +507,7 @@ ] }, { - "key": "SetKeepLoadedOnLevelUnload", + "base": "SetKeepLoadedOnLevelUnload", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Keep Loaded On Level Unload" @@ -531,7 +531,7 @@ ] }, { - "key": "SetIsMultiTouchSupported", + "base": "SetIsMultiTouchSupported", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Multi-touch Supported" @@ -555,7 +555,7 @@ ] }, { - "key": "SetIsRenderToTexture", + "base": "SetIsRenderToTexture", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Render To Texture" @@ -579,7 +579,7 @@ ] }, { - "key": "GetChildElements", + "base": "GetChildElements", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Child Elements" @@ -602,7 +602,7 @@ ] }, { - "key": "GetNumChildElements", + "base": "GetNumChildElements", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Number Of Child Elements" @@ -625,7 +625,7 @@ ] }, { - "key": "GetIsPixelAligned", + "base": "GetIsPixelAligned", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Pixel Aligned" @@ -648,7 +648,7 @@ ] }, { - "key": "GetEnabled", + "base": "GetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Enabled" @@ -671,7 +671,7 @@ ] }, { - "key": "SetIsNavigationSupported", + "base": "SetIsNavigationSupported", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Navigation Supported" @@ -695,7 +695,7 @@ ] }, { - "key": "GetDrawOrder", + "base": "GetDrawOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Draw Order" @@ -718,7 +718,7 @@ ] }, { - "key": "ForceEnterInputEventOnInteractable", + "base": "ForceEnterInputEventOnInteractable", "entry": { "name": "In", "tooltip": "When signaled, this will invoke ForceEnterInputEventOnInteractable" @@ -741,7 +741,7 @@ ] }, { - "key": "GetIsMultiTouchSupported", + "base": "GetIsMultiTouchSupported", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Multi-touch Supported" @@ -764,7 +764,7 @@ ] }, { - "key": "SetIsPixelAligned", + "base": "SetIsPixelAligned", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Pixel Aligned" @@ -788,7 +788,7 @@ ] }, { - "key": "SetIsPositionalInputSupported", + "base": "SetIsPositionalInputSupported", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Positional Input Supported" @@ -812,7 +812,7 @@ ] }, { - "key": "CloneElement", + "base": "CloneElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Clone Element" @@ -859,7 +859,7 @@ ] }, { - "key": "SetNavigationRepeatDelay", + "base": "SetNavigationRepeatDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetNavigationRepeatDelay" @@ -881,7 +881,7 @@ ] }, { - "key": "GetIsRenderToTexture", + "base": "GetIsRenderToTexture", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Render To Texture" @@ -904,7 +904,7 @@ ] }, { - "key": "SetEnabled", + "base": "SetEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Enabled" @@ -928,7 +928,7 @@ ] }, { - "key": "SetIsTextPixelAligned", + "base": "SetIsTextPixelAligned", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Text Pixel Aligned" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasManagerBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasManagerBus.names index fe30e0079a..2776264467 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasManagerBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasManagerBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasManagerBus", + "base": "UiCanvasManagerBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateCanvas", + "base": "CreateCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Create Canvas" @@ -34,7 +34,7 @@ ] }, { - "key": "LoadCanvas", + "base": "LoadCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Load Canvas" @@ -67,7 +67,7 @@ ] }, { - "key": "UnloadCanvas", + "base": "UnloadCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Unload Canvas" @@ -91,7 +91,7 @@ ] }, { - "key": "FindLoadedCanvasByPathName", + "base": "FindLoadedCanvasByPathName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Loaded Canvas By Pathname" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasProxyRefBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasProxyRefBus.names index 170be3be23..bcd50ded75 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasProxyRefBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasProxyRefBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasProxyRefBus", + "base": "UiCanvasProxyRefBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetCanvasRefEntity", + "base": "SetCanvasRefEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Canvas Ref Entity" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasRefBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasRefBus.names index c1c98b7f64..9d2758982d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasRefBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCanvasRefBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCanvasRefBus", + "base": "UiCanvasRefBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetCanvas", + "base": "GetCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Canvas" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCheckboxBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCheckboxBus.names index ce0125bae0..4a41b40fa6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCheckboxBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCheckboxBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCheckboxBus", + "base": "UiCheckboxBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetChangedActionName", + "base": "SetChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Changed Action Name" @@ -34,7 +34,7 @@ ] }, { - "key": "GetChangedActionName", + "base": "GetChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Changed Action Name" @@ -57,7 +57,7 @@ ] }, { - "key": "SetCheckedEntity", + "base": "SetCheckedEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Checked Entity" @@ -81,7 +81,7 @@ ] }, { - "key": "SetUncheckedEntity", + "base": "SetUncheckedEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Unchecked Entity" @@ -105,7 +105,7 @@ ] }, { - "key": "SetTurnOnActionName", + "base": "SetTurnOnActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Turn On Action Name" @@ -129,7 +129,7 @@ ] }, { - "key": "GetTurnOffActionName", + "base": "GetTurnOffActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Turn Off Action Name" @@ -152,7 +152,7 @@ ] }, { - "key": "SetState", + "base": "SetState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set State" @@ -176,7 +176,7 @@ ] }, { - "key": "ToggleState", + "base": "ToggleState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Toggle State" @@ -199,7 +199,7 @@ ] }, { - "key": "GetState", + "base": "GetState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get State" @@ -222,7 +222,7 @@ ] }, { - "key": "GetCheckedEntity", + "base": "GetCheckedEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Checked Entity" @@ -246,7 +246,7 @@ ] }, { - "key": "GetUncheckedEntity", + "base": "GetUncheckedEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Unchecked Entity" @@ -270,7 +270,7 @@ ] }, { - "key": "GetTurnOnActionName", + "base": "GetTurnOnActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Turn On Action Name" @@ -293,7 +293,7 @@ ] }, { - "key": "SetTurnOffActionName", + "base": "SetTurnOffActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Turn Off Action Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiClickableTextBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiClickableTextBus.names index 6400213daa..a822472301 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiClickableTextBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiClickableTextBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiClickableTextBus", + "base": "UiClickableTextBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetClickableTextColor", + "base": "SetClickableTextColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Clickable Text Color" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCursorBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCursorBus.names index 936ff3475e..488021ff3b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCursorBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCursorBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCursorBus", + "base": "UiCursorBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetUiCursorPosition", + "base": "GetUiCursorPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Position" @@ -33,7 +33,7 @@ ] }, { - "key": "IsUiCursorVisible", + "base": "IsUiCursorVisible", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Visible" @@ -56,7 +56,7 @@ ] }, { - "key": "DecrementVisibleCounter", + "base": "DecrementVisibleCounter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Decrement Visible Counter" @@ -71,7 +71,7 @@ } }, { - "key": "IncrementVisibleCounter", + "base": "IncrementVisibleCounter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Increment Visible Counter" @@ -86,7 +86,7 @@ } }, { - "key": "SetUiCursor", + "base": "SetUiCursor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Cursor" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCustomImageBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCustomImageBus.names index c92295875e..1662986211 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCustomImageBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiCustomImageBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiCustomImageBus", + "base": "UiCustomImageBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetClamp", + "base": "GetClamp", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Clamp" @@ -33,7 +33,7 @@ ] }, { - "key": "SetUVs", + "base": "SetUVs", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set UVs" @@ -57,7 +57,7 @@ ] }, { - "key": "SetClamp", + "base": "SetClamp", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Clamp" @@ -81,7 +81,7 @@ ] }, { - "key": "SetSpritePathname", + "base": "SetSpritePathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sprite Pathname" @@ -105,7 +105,7 @@ ] }, { - "key": "GetSpritePathname", + "base": "GetSpritePathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sprite Pathname" @@ -128,7 +128,7 @@ ] }, { - "key": "GetUVs", + "base": "GetUVs", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get UVs" @@ -151,7 +151,7 @@ ] }, { - "key": "SetColor", + "base": "SetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Color" @@ -175,7 +175,7 @@ ] }, { - "key": "GetColor", + "base": "GetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Color" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDraggableBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDraggableBus.names index 15b47dfce5..7a47d5fd04 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDraggableBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDraggableBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDraggableBus", + "base": "UiDraggableBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ProxyDragEnd", + "base": "ProxyDragEnd", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Proxy Drag End" @@ -34,7 +34,7 @@ ] }, { - "key": "RedoDrag", + "base": "RedoDrag", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Redo Drag" @@ -58,7 +58,7 @@ ] }, { - "key": "SetAsProxy", + "base": "SetAsProxy", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set As Proxy" @@ -89,7 +89,7 @@ ] }, { - "key": "IsProxy", + "base": "IsProxy", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Proxy" @@ -112,7 +112,7 @@ ] }, { - "key": "SetDragState", + "base": "SetDragState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Drag State" @@ -136,7 +136,7 @@ ] }, { - "key": "GetCanDropOnAnyCanvas", + "base": "GetCanDropOnAnyCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Can Drop On Any Canvas" @@ -159,7 +159,7 @@ ] }, { - "key": "SetCanDropOnAnyCanvas", + "base": "SetCanDropOnAnyCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Can Drop On Any Canvas" @@ -183,7 +183,7 @@ ] }, { - "key": "GetDragState", + "base": "GetDragState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Drag State" @@ -206,7 +206,7 @@ ] }, { - "key": "GetOriginalFromProxy", + "base": "GetOriginalFromProxy", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Original From Proxy" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropTargetBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropTargetBus.names index 58e4ab05b5..a6c382dd26 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropTargetBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropTargetBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDropTargetBus", + "base": "UiDropTargetBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetOnDropActionName", + "base": "GetOnDropActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get On Drop Action Name" @@ -33,7 +33,7 @@ ] }, { - "key": "SetOnDropActionName", + "base": "SetOnDropActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set On Drop Action Name" @@ -57,7 +57,7 @@ ] }, { - "key": "GetDropState", + "base": "GetDropState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Drop State" @@ -80,7 +80,7 @@ ] }, { - "key": "SetDropState", + "base": "SetDropState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Drop State" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropdownBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropdownBus.names index f390bdb7f4..88bb28acc3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropdownBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropdownBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDropdownBus", + "base": "UiDropdownBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetOptionSelectedActionName", + "base": "GetOptionSelectedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Option Selected Action Name" @@ -33,7 +33,7 @@ ] }, { - "key": "GetWaitTime", + "base": "GetWaitTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Wait Time" @@ -56,7 +56,7 @@ ] }, { - "key": "SetCollapseOnOutsideClick", + "base": "SetCollapseOnOutsideClick", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Collapse On Outside Click" @@ -80,7 +80,7 @@ ] }, { - "key": "SetExpandOnHover", + "base": "SetExpandOnHover", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Expand On Hover" @@ -104,7 +104,7 @@ ] }, { - "key": "Expand", + "base": "Expand", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Expand" @@ -119,7 +119,7 @@ } }, { - "key": "Collapse", + "base": "Collapse", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Collapse" @@ -134,7 +134,7 @@ } }, { - "key": "SetCollapsedActionName", + "base": "SetCollapsedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Collapsed Action Name" @@ -158,7 +158,7 @@ ] }, { - "key": "GetExpandOnHover", + "base": "GetExpandOnHover", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Expand On Hover" @@ -181,7 +181,7 @@ ] }, { - "key": "SetWaitTime", + "base": "SetWaitTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Wait Time" @@ -205,7 +205,7 @@ ] }, { - "key": "GetCollapseOnOutsideClick", + "base": "GetCollapseOnOutsideClick", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Collapse On Outside Click" @@ -228,7 +228,7 @@ ] }, { - "key": "GetExpandedParentId", + "base": "GetExpandedParentId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Expanded Parent" @@ -252,7 +252,7 @@ ] }, { - "key": "GetTextElement", + "base": "GetTextElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text Element" @@ -276,7 +276,7 @@ ] }, { - "key": "GetIconElement", + "base": "GetIconElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Icon Element" @@ -300,7 +300,7 @@ ] }, { - "key": "SetIconElement", + "base": "SetIconElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Icon Element" @@ -324,7 +324,7 @@ ] }, { - "key": "SetExpandedActionName", + "base": "SetExpandedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Expanded Action Name" @@ -348,7 +348,7 @@ ] }, { - "key": "SetContent", + "base": "SetContent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Content" @@ -372,7 +372,7 @@ ] }, { - "key": "SetTextElement", + "base": "SetTextElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text Element" @@ -396,7 +396,7 @@ ] }, { - "key": "SetValue", + "base": "SetValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Value" @@ -420,7 +420,7 @@ ] }, { - "key": "GetContent", + "base": "GetContent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Content" @@ -444,7 +444,7 @@ ] }, { - "key": "GetExpandedActionName", + "base": "GetExpandedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Expanded Action Name" @@ -467,7 +467,7 @@ ] }, { - "key": "GetCollapsedActionName", + "base": "GetCollapsedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Collapsed Action Name" @@ -490,7 +490,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Value" @@ -514,7 +514,7 @@ ] }, { - "key": "SetExpandedParentId", + "base": "SetExpandedParentId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Expanded Parent" @@ -538,7 +538,7 @@ ] }, { - "key": "SetOptionSelectedActionName", + "base": "SetOptionSelectedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Option Selected Action Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropdownOptionBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropdownOptionBus.names index 9ba0e74993..3535c5ccd5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropdownOptionBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDropdownOptionBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDropdownOptionBus", + "base": "UiDropdownOptionBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetTextElement", + "base": "GetTextElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text Element" @@ -34,7 +34,7 @@ ] }, { - "key": "GetIconElement", + "base": "GetIconElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Icon Element" @@ -58,7 +58,7 @@ ] }, { - "key": "SetIconElement", + "base": "SetIconElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Icon Element" @@ -82,7 +82,7 @@ ] }, { - "key": "SetOwningDropdown", + "base": "SetOwningDropdown", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Owning Dropdown" @@ -106,7 +106,7 @@ ] }, { - "key": "SetTextElement", + "base": "SetTextElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text Element" @@ -130,7 +130,7 @@ ] }, { - "key": "GetOwningDropdown", + "base": "GetOwningDropdown", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Owning Dropdown" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicContentDatabaseBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicContentDatabaseBus.names index f51a09ebb1..09642e35f2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicContentDatabaseBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicContentDatabaseBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDynamicContentDatabaseBus", + "base": "UiDynamicContentDatabaseBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "Refresh", + "base": "Refresh", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Refresh" @@ -41,7 +41,7 @@ ] }, { - "key": "GetColorPrice", + "base": "GetColorPrice", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Color Price" @@ -81,7 +81,7 @@ ] }, { - "key": "GetColorName", + "base": "GetColorName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Color Name" @@ -121,7 +121,7 @@ ] }, { - "key": "GetColor", + "base": "GetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Color" @@ -161,7 +161,7 @@ ] }, { - "key": "GetNumColors", + "base": "GetNumColors", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Number Of Colors" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicLayoutBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicLayoutBus.names index edfc147085..1f3cc89f60 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicLayoutBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicLayoutBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDynamicLayoutBus", + "base": "UiDynamicLayoutBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetNumChildElements", + "base": "SetNumChildElements", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Number Of Child Elements" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicScrollBoxBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicScrollBoxBus.names index f386c97dde..9f8b4acd23 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicScrollBoxBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiDynamicScrollBoxBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiDynamicScrollBoxBus", + "base": "UiDynamicScrollBoxBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetSectionsEnabled", + "base": "SetSectionsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sections Enabled" @@ -34,7 +34,7 @@ ] }, { - "key": "GetEstimatedVariableElementSize", + "base": "GetEstimatedVariableElementSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Estimated Variable Element Size" @@ -57,7 +57,7 @@ ] }, { - "key": "SetAutoCalculateVariableElementSize", + "base": "SetAutoCalculateVariableElementSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Auto-calculate Variable Element Size" @@ -81,7 +81,7 @@ ] }, { - "key": "GetEstimatedVariableHeaderSize", + "base": "GetEstimatedVariableHeaderSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Estimated Variable Header Size" @@ -104,7 +104,7 @@ ] }, { - "key": "SetEstimatedVariableHeaderSize", + "base": "SetEstimatedVariableHeaderSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Estimated Variable Header Size" @@ -128,7 +128,7 @@ ] }, { - "key": "SetPrototypeElement", + "base": "SetPrototypeElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Prototype Element" @@ -152,7 +152,7 @@ ] }, { - "key": "SetElementsVaryInSize", + "base": "SetElementsVaryInSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Elements Vary In Size" @@ -176,7 +176,7 @@ ] }, { - "key": "RemoveElementsFromFront", + "base": "RemoveElementsFromFront", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Remove Elements From Front" @@ -200,7 +200,7 @@ ] }, { - "key": "GetElementIndexOfChild", + "base": "GetElementIndexOfChild", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Element Index Of Child" @@ -233,7 +233,7 @@ ] }, { - "key": "GetElementsVaryInSize", + "base": "GetElementsVaryInSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Elements Vary In Size" @@ -256,7 +256,7 @@ ] }, { - "key": "GetHeadersSticky", + "base": "GetHeadersSticky", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Headers Sticky" @@ -279,7 +279,7 @@ ] }, { - "key": "GetAutoRefreshOnPostActivate", + "base": "GetAutoRefreshOnPostActivate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Auto-refresh On Post-activate" @@ -302,7 +302,7 @@ ] }, { - "key": "SetEstimatedVariableElementSize", + "base": "SetEstimatedVariableElementSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Estimated Variable Element Size" @@ -326,7 +326,7 @@ ] }, { - "key": "SetPrototypeHeader", + "base": "SetPrototypeHeader", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Prototype Header" @@ -350,7 +350,7 @@ ] }, { - "key": "GetSectionsEnabled", + "base": "GetSectionsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sections Enabled" @@ -373,7 +373,7 @@ ] }, { - "key": "ScrollToEnd", + "base": "ScrollToEnd", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Scroll To End" @@ -388,7 +388,7 @@ } }, { - "key": "GetPrototypeElement", + "base": "GetPrototypeElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Prototype Element" @@ -412,7 +412,7 @@ ] }, { - "key": "SetHeadersVaryInSize", + "base": "SetHeadersVaryInSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Headers Vary In Size" @@ -436,7 +436,7 @@ ] }, { - "key": "AddElementsToEnd", + "base": "AddElementsToEnd", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Add Elements To End" @@ -467,7 +467,7 @@ ] }, { - "key": "GetChildAtElementIndex", + "base": "GetChildAtElementIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Child At Element Index" @@ -500,7 +500,7 @@ ] }, { - "key": "SetHeadersSticky", + "base": "SetHeadersSticky", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Headers Sticky" @@ -524,7 +524,7 @@ ] }, { - "key": "GetChildAtSectionAndElementIndex", + "base": "GetChildAtSectionAndElementIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Child At Section And Element Index" @@ -564,7 +564,7 @@ ] }, { - "key": "SetAutoRefreshOnPostActivate", + "base": "SetAutoRefreshOnPostActivate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Auto-refresh On Post-activate" @@ -588,7 +588,7 @@ ] }, { - "key": "GetSectionIndexOfChild", + "base": "GetSectionIndexOfChild", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Section Index Of Child" @@ -621,7 +621,7 @@ ] }, { - "key": "RefreshContent", + "base": "RefreshContent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Refresh Content" @@ -636,7 +636,7 @@ } }, { - "key": "GetHeadersVaryInSize", + "base": "GetHeadersVaryInSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Headers Vary In Size" @@ -659,7 +659,7 @@ ] }, { - "key": "GetPrototypeHeader", + "base": "GetPrototypeHeader", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Prototype Header" @@ -683,7 +683,7 @@ ] }, { - "key": "SetAutoCalculateVariableHeaderSize", + "base": "SetAutoCalculateVariableHeaderSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Auto-calculate Variable Header Size" @@ -707,7 +707,7 @@ ] }, { - "key": "GetAutoCalculateVariableElementSize", + "base": "GetAutoCalculateVariableElementSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Auto-calculate Variable Element Size" @@ -730,7 +730,7 @@ ] }, { - "key": "GetAutoCalculateVariableHeaderSize", + "base": "GetAutoCalculateVariableHeaderSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Auto-calculate Variable Header Size" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiElementBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiElementBus.names index 61645c6432..e55be9b55d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiElementBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiElementBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiElementBus", + "base": "UiElementBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "FindChildByName", + "base": "FindChildByName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Child By Name" @@ -43,7 +43,7 @@ ] }, { - "key": "GetChild", + "base": "GetChild", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Child" @@ -76,7 +76,7 @@ ] }, { - "key": "GetNumChildElements", + "base": "GetNumChildElements", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Number Of Child Elements" @@ -99,7 +99,7 @@ ] }, { - "key": "GetChildren", + "base": "GetChildren", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Children" @@ -122,7 +122,7 @@ ] }, { - "key": "DestroyElement", + "base": "DestroyElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Destroy Element" @@ -137,7 +137,7 @@ } }, { - "key": "IsAncestor", + "base": "IsAncestor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Ancestor" @@ -170,7 +170,7 @@ ] }, { - "key": "GetParent", + "base": "GetParent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Parent" @@ -194,7 +194,7 @@ ] }, { - "key": "FindDescendantByName", + "base": "FindDescendantByName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Descendant By Name" @@ -227,7 +227,7 @@ ] }, { - "key": "IsEnabled", + "base": "IsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Enabled" @@ -250,7 +250,7 @@ ] }, { - "key": "GetCanvas", + "base": "GetCanvas", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Canvas" @@ -274,7 +274,7 @@ ] }, { - "key": "Reparent", + "base": "Reparent", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Reparent" @@ -305,7 +305,7 @@ ] }, { - "key": "GetName", + "base": "GetName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Name" @@ -328,7 +328,7 @@ ] }, { - "key": "GetIndexOfChildByEntityId", + "base": "GetIndexOfChildByEntityId", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Index Of Child By EntityID" @@ -361,7 +361,7 @@ ] }, { - "key": "SetIsEnabled", + "base": "SetIsEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Enabled" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiFaderBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiFaderBus.names index 32e99d34f7..7a00e412d7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiFaderBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiFaderBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiFaderBus", + "base": "UiFaderBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetUseRenderToTexture", + "base": "GetUseRenderToTexture", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Use Render To Texture" @@ -33,7 +33,7 @@ ] }, { - "key": "IsFading", + "base": "IsFading", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Fading" @@ -56,7 +56,7 @@ ] }, { - "key": "Fade", + "base": "Fade", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Fade" @@ -87,7 +87,7 @@ ] }, { - "key": "SetFadeValue", + "base": "SetFadeValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Fade Value" @@ -111,7 +111,7 @@ ] }, { - "key": "GetFadeValue", + "base": "GetFadeValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Fade Value" @@ -134,7 +134,7 @@ ] }, { - "key": "SetUseRenderToTexture", + "base": "SetUseRenderToTexture", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Use Render To Texture" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiFlipbookAnimationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiFlipbookAnimationBus.names index 341fd798d4..16feca1593 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiFlipbookAnimationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiFlipbookAnimationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiFlipbookAnimationBus", + "base": "UiFlipbookAnimationBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetLoopType", + "base": "GetLoopType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Loop Type" @@ -33,7 +33,7 @@ ] }, { - "key": "GetReverseDelay", + "base": "GetReverseDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Reverse Delay" @@ -56,7 +56,7 @@ ] }, { - "key": "SetIsAutoPlay", + "base": "SetIsAutoPlay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Auto Play Enabled" @@ -80,7 +80,7 @@ ] }, { - "key": "SetCurrentFrame", + "base": "SetCurrentFrame", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Current Frame" @@ -104,7 +104,7 @@ ] }, { - "key": "GetLoopStartFrame", + "base": "GetLoopStartFrame", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Loop Start Frame" @@ -127,7 +127,7 @@ ] }, { - "key": "SetLoopType", + "base": "SetLoopType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Loop Type" @@ -151,7 +151,7 @@ ] }, { - "key": "GetStartDelay", + "base": "GetStartDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Start Delay" @@ -174,7 +174,7 @@ ] }, { - "key": "SetStartDelay", + "base": "SetStartDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Start Delay" @@ -198,7 +198,7 @@ ] }, { - "key": "GetCurrentFrame", + "base": "GetCurrentFrame", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Current Frame" @@ -221,7 +221,7 @@ ] }, { - "key": "GetFramerate", + "base": "GetFramerate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Framerate" @@ -244,7 +244,7 @@ ] }, { - "key": "SetLoopDelay", + "base": "SetLoopDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Loop Delay" @@ -268,7 +268,7 @@ ] }, { - "key": "GetStartFrame", + "base": "GetStartFrame", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Start Frame" @@ -291,7 +291,7 @@ ] }, { - "key": "SetFramerateUnit", + "base": "SetFramerateUnit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Framerate Unit" @@ -315,7 +315,7 @@ ] }, { - "key": "IsPlaying", + "base": "IsPlaying", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Playing" @@ -338,7 +338,7 @@ ] }, { - "key": "SetEndFrame", + "base": "SetEndFrame", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set End Frame" @@ -362,7 +362,7 @@ ] }, { - "key": "SetLoopStartFrame", + "base": "SetLoopStartFrame", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Loop Start Frame" @@ -386,7 +386,7 @@ ] }, { - "key": "SetReverseDelay", + "base": "SetReverseDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Reverse Delay" @@ -410,7 +410,7 @@ ] }, { - "key": "Stop", + "base": "Stop", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Stop" @@ -425,7 +425,7 @@ } }, { - "key": "SetFramerate", + "base": "SetFramerate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Framerate" @@ -449,7 +449,7 @@ ] }, { - "key": "GetIsAutoPlay", + "base": "GetIsAutoPlay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Auto Play Enabled" @@ -472,7 +472,7 @@ ] }, { - "key": "Start", + "base": "Start", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Start" @@ -487,7 +487,7 @@ } }, { - "key": "SetStartFrame", + "base": "SetStartFrame", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Start Frame" @@ -511,7 +511,7 @@ ] }, { - "key": "GetEndFrame", + "base": "GetEndFrame", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get End Frame" @@ -534,7 +534,7 @@ ] }, { - "key": "GetFramerateUnit", + "base": "GetFramerateUnit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Framerate Unit" @@ -557,7 +557,7 @@ ] }, { - "key": "GetLoopDelay", + "base": "GetLoopDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Loop Delay" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiImageBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiImageBus.names index ed79b2aaad..cef46a7fea 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiImageBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiImageBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiImageBus", + "base": "UiImageBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetColor", + "base": "GetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Color" @@ -33,7 +33,7 @@ ] }, { - "key": "SetColor", + "base": "SetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Color" @@ -57,7 +57,7 @@ ] }, { - "key": "SetSpriteType", + "base": "SetSpriteType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sprite Type" @@ -81,7 +81,7 @@ ] }, { - "key": "GetFillClockwise", + "base": "GetFillClockwise", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Fill Clockwise" @@ -104,7 +104,7 @@ ] }, { - "key": "SetRenderTargetName", + "base": "SetRenderTargetName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Render Target Name" @@ -128,7 +128,7 @@ ] }, { - "key": "SetSpritePathnameIfExists", + "base": "SetSpritePathnameIfExists", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sprite Pathname If Exists" @@ -161,7 +161,7 @@ ] }, { - "key": "SetEdgeFillOrigin", + "base": "SetEdgeFillOrigin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Edge Fill Origin" @@ -185,7 +185,7 @@ ] }, { - "key": "GetEdgeFillOrigin", + "base": "GetEdgeFillOrigin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Edge Fill Origin" @@ -208,7 +208,7 @@ ] }, { - "key": "SetFillClockwise", + "base": "SetFillClockwise", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Fill Clockwise" @@ -232,7 +232,7 @@ ] }, { - "key": "SetSpritePathname", + "base": "SetSpritePathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sprite Pathname" @@ -256,7 +256,7 @@ ] }, { - "key": "SetFillCenter", + "base": "SetFillCenter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Fill Center" @@ -280,7 +280,7 @@ ] }, { - "key": "SetAlpha", + "base": "SetAlpha", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Alpha" @@ -304,7 +304,7 @@ ] }, { - "key": "SetFillType", + "base": "SetFillType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Fill Type" @@ -328,7 +328,7 @@ ] }, { - "key": "SetFillAmount", + "base": "SetFillAmount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Fill Amount" @@ -352,7 +352,7 @@ ] }, { - "key": "GetRadialFillStartAngle", + "base": "GetRadialFillStartAngle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Radial Fill Start Angle" @@ -375,7 +375,7 @@ ] }, { - "key": "GetRenderTargetName", + "base": "GetRenderTargetName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Render Target Name" @@ -398,7 +398,7 @@ ] }, { - "key": "SetIsRenderTargetSRGB", + "base": "SetIsRenderTargetSRGB", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Render Target sRGB" @@ -422,7 +422,7 @@ ] }, { - "key": "GetAlpha", + "base": "GetAlpha", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Alpha" @@ -445,7 +445,7 @@ ] }, { - "key": "GetIsRenderTargetSRGB", + "base": "GetIsRenderTargetSRGB", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Is Render Target sRGB" @@ -468,7 +468,7 @@ ] }, { - "key": "SetImageType", + "base": "SetImageType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Image Type" @@ -492,7 +492,7 @@ ] }, { - "key": "GetSpritePathname", + "base": "GetSpritePathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sprite Pathname" @@ -515,7 +515,7 @@ ] }, { - "key": "GetFillType", + "base": "GetFillType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Fill Type" @@ -538,7 +538,7 @@ ] }, { - "key": "SetCornerFillOrigin", + "base": "SetCornerFillOrigin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Corner Fill Origin" @@ -562,7 +562,7 @@ ] }, { - "key": "GetCornerFillOrigin", + "base": "GetCornerFillOrigin", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Corner Fill Origin" @@ -585,7 +585,7 @@ ] }, { - "key": "GetImageType", + "base": "GetImageType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Image Type" @@ -608,7 +608,7 @@ ] }, { - "key": "SetRadialFillStartAngle", + "base": "SetRadialFillStartAngle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Radial Fill Start Angle" @@ -632,7 +632,7 @@ ] }, { - "key": "GetSpriteType", + "base": "GetSpriteType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sprite Type" @@ -655,7 +655,7 @@ ] }, { - "key": "GetFillAmount", + "base": "GetFillAmount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Fill Amount" @@ -678,7 +678,7 @@ ] }, { - "key": "GetFillCenter", + "base": "GetFillCenter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Fill Center" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiImageSequenceBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiImageSequenceBus.names index 90f0a59580..8b8f44c08a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiImageSequenceBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiImageSequenceBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiImageSequenceBus", + "base": "UiImageSequenceBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetImageType", + "base": "GetImageType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Image Type" @@ -33,7 +33,7 @@ ] }, { - "key": "SetImageType", + "base": "SetImageType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Image Type" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiIndexableImageBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiIndexableImageBus.names index 40f92ace00..82b63fa0ec 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiIndexableImageBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiIndexableImageBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiIndexableImageBus", + "base": "UiIndexableImageBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetImageIndexAlias", + "base": "GetImageIndexAlias", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Image Index Alias" @@ -43,7 +43,7 @@ ] }, { - "key": "GetImageIndexCount", + "base": "GetImageIndexCount", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Image Index Count" @@ -66,7 +66,7 @@ ] }, { - "key": "SetImageIndex", + "base": "SetImageIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Image Index" @@ -90,7 +90,7 @@ ] }, { - "key": "SetImageIndexAlias", + "base": "SetImageIndexAlias", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Image Index Alias" @@ -121,7 +121,7 @@ ] }, { - "key": "GetImageIndexFromAlias", + "base": "GetImageIndexFromAlias", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Image Index From Alias" @@ -154,7 +154,7 @@ ] }, { - "key": "GetImageIndex", + "base": "GetImageIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Image Index" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableActionsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableActionsBus.names index b124f9ccd5..715cc06063 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableActionsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableActionsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiInteractableActionsBus", + "base": "UiInteractableActionsBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetPressedActionName", + "base": "SetPressedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Pressed Action Name" @@ -34,7 +34,7 @@ ] }, { - "key": "GetPressedActionName", + "base": "GetPressedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Pressed Action Name" @@ -57,7 +57,7 @@ ] }, { - "key": "GetHoverEndActionName", + "base": "GetHoverEndActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Hover End Action Name" @@ -80,7 +80,7 @@ ] }, { - "key": "SetHoverStartActionName", + "base": "SetHoverStartActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Hover Start Action Name" @@ -104,7 +104,7 @@ ] }, { - "key": "GetHoverStartActionName", + "base": "GetHoverStartActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Hover Start Action Name" @@ -127,7 +127,7 @@ ] }, { - "key": "SetHoverEndActionName", + "base": "SetHoverEndActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Hover End Action Name" @@ -151,7 +151,7 @@ ] }, { - "key": "GetReleasedActionName", + "base": "GetReleasedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Released Action Name" @@ -174,7 +174,7 @@ ] }, { - "key": "SetReleasedActionName", + "base": "SetReleasedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Released Action Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableBus.names index b340e96673..139822292a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiInteractableBus", + "base": "UiInteractableBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetIsAutoActivationEnabled", + "base": "SetIsAutoActivationEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Auto Activation Enabled" @@ -34,7 +34,7 @@ ] }, { - "key": "GetIsAutoActivationEnabled", + "base": "GetIsAutoActivationEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Auto Activation Enabled" @@ -57,7 +57,7 @@ ] }, { - "key": "SetIsHandlingMultiTouchEvents", + "base": "SetIsHandlingMultiTouchEvents", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Handling Multi-touch Events" @@ -81,7 +81,7 @@ ] }, { - "key": "IsHandlingMultiTouchEvents", + "base": "IsHandlingMultiTouchEvents", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Handling Multi-touch Events" @@ -104,7 +104,7 @@ ] }, { - "key": "IsHandlingEvents", + "base": "IsHandlingEvents", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Handling Events" @@ -127,7 +127,7 @@ ] }, { - "key": "SetIsHandlingEvents", + "base": "SetIsHandlingEvents", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Handling Events" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableStatesBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableStatesBus.names index b194ece0de..93f51786c7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableStatesBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiInteractableStatesBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiInteractableStatesBus", + "base": "UiInteractableStatesBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetStateFont", + "base": "SetStateFont", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set State Font" @@ -55,7 +55,7 @@ ] }, { - "key": "SetStateSpritePathname", + "base": "SetStateSpritePathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set State Sprite Pathname" @@ -93,7 +93,7 @@ ] }, { - "key": "GetStateFontPathname", + "base": "GetStateFontPathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get State Font Pathname" @@ -133,7 +133,7 @@ ] }, { - "key": "HasStateFont", + "base": "HasStateFont", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Has State Font" @@ -173,7 +173,7 @@ ] }, { - "key": "SetStateAlpha", + "base": "SetStateAlpha", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set State Alpha" @@ -211,7 +211,7 @@ ] }, { - "key": "GetStateAlpha", + "base": "GetStateAlpha", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get State Alpha" @@ -251,7 +251,7 @@ ] }, { - "key": "GetStateFontEffectIndex", + "base": "GetStateFontEffectIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get State Font Effect Index" @@ -291,7 +291,7 @@ ] }, { - "key": "HasStateColor", + "base": "HasStateColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Has State Color" @@ -331,7 +331,7 @@ ] }, { - "key": "GetStateSpritePathname", + "base": "GetStateSpritePathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get State Sprite Pathname" @@ -371,7 +371,7 @@ ] }, { - "key": "HasStateSprite", + "base": "HasStateSprite", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Has State Sprite" @@ -411,7 +411,7 @@ ] }, { - "key": "SetStateColor", + "base": "SetStateColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set State Color" @@ -449,7 +449,7 @@ ] }, { - "key": "HasStateAlpha", + "base": "HasStateAlpha", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Has State Alpha" @@ -489,7 +489,7 @@ ] }, { - "key": "GetStateColor", + "base": "GetStateColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get State Color" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutBus.names index 022dbc0abe..72760e1a72 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutBus", + "base": "UiLayoutBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetIgnoreDefaultLayoutCells", + "base": "SetIgnoreDefaultLayoutCells", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Ignore Default Layout Cells" @@ -34,7 +34,7 @@ ] }, { - "key": "SetVerticalChildAlignment", + "base": "SetVerticalChildAlignment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Vertical Child Alignment" @@ -58,7 +58,7 @@ ] }, { - "key": "SetHorizontalChildAlignment", + "base": "SetHorizontalChildAlignment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Horizontal Child Alignment" @@ -82,7 +82,7 @@ ] }, { - "key": "GetHorizontalChildAlignment", + "base": "GetHorizontalChildAlignment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Horizontal Child Alignment" @@ -105,7 +105,7 @@ ] }, { - "key": "GetVerticalChildAlignment", + "base": "GetVerticalChildAlignment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Vertical Child Alignment" @@ -128,7 +128,7 @@ ] }, { - "key": "GetIgnoreDefaultLayoutCells", + "base": "GetIgnoreDefaultLayoutCells", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Ignore Default Layout Cells" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutCellBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutCellBus.names index 8f96afa8ff..8e95d005db 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutCellBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutCellBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutCellBus", + "base": "UiLayoutCellBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetExtraHeightRatio", + "base": "SetExtraHeightRatio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Extra Height Ratio" @@ -34,7 +34,7 @@ ] }, { - "key": "GetExtraWidthRatio", + "base": "GetExtraWidthRatio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Extra Width Ratio" @@ -57,7 +57,7 @@ ] }, { - "key": "SetExtraWidthRatio", + "base": "SetExtraWidthRatio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Extra Width Ratio" @@ -81,7 +81,7 @@ ] }, { - "key": "SetMaxWidth", + "base": "SetMaxWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetMaxWidth" @@ -103,7 +103,7 @@ ] }, { - "key": "SetMaxHeight", + "base": "SetMaxHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetMaxHeight" @@ -125,7 +125,7 @@ ] }, { - "key": "GetMaxWidth", + "base": "GetMaxWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetMaxWidth" @@ -147,7 +147,7 @@ ] }, { - "key": "GetMaxHeight", + "base": "GetMaxHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetMaxHeight" @@ -169,7 +169,7 @@ ] }, { - "key": "GetExtraHeightRatio", + "base": "GetExtraHeightRatio", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Extra Height Ratio" @@ -192,7 +192,7 @@ ] }, { - "key": "GetTargetHeight", + "base": "GetTargetHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Target Height" @@ -215,7 +215,7 @@ ] }, { - "key": "SetMinWidth", + "base": "SetMinWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Min Width" @@ -239,7 +239,7 @@ ] }, { - "key": "SetMinHeight", + "base": "SetMinHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Min Height" @@ -263,7 +263,7 @@ ] }, { - "key": "GetMinWidth", + "base": "GetMinWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Min Width" @@ -286,7 +286,7 @@ ] }, { - "key": "GetMinHeight", + "base": "GetMinHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Min Height" @@ -309,7 +309,7 @@ ] }, { - "key": "GetTargetWidth", + "base": "GetTargetWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Target Width" @@ -332,7 +332,7 @@ ] }, { - "key": "SetTargetWidth", + "base": "SetTargetWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Target Width" @@ -356,7 +356,7 @@ ] }, { - "key": "SetTargetHeight", + "base": "SetTargetHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Target Height" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutColumnBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutColumnBus.names index a89fe4382b..8cba866475 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutColumnBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutColumnBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutColumnBus", + "base": "UiLayoutColumnBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetSpacing", + "base": "SetSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Spacing" @@ -34,7 +34,7 @@ ] }, { - "key": "GetOrder", + "base": "GetOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Order" @@ -57,7 +57,7 @@ ] }, { - "key": "SetOrder", + "base": "SetOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Order" @@ -81,7 +81,7 @@ ] }, { - "key": "GetSpacing", + "base": "GetSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Spacing" @@ -104,7 +104,7 @@ ] }, { - "key": "GetPadding", + "base": "GetPadding", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Padding" @@ -127,7 +127,7 @@ ] }, { - "key": "SetPadding", + "base": "SetPadding", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Padding" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutFitterBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutFitterBus.names index 392ac7fbaf..2c2a32bd85 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutFitterBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutFitterBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutFitterBus", + "base": "UiLayoutFitterBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetHorizontalFit", + "base": "GetHorizontalFit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Horizontal Fit" @@ -33,7 +33,7 @@ ] }, { - "key": "SetHorizontalFit", + "base": "SetHorizontalFit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Horizontal Fit" @@ -57,7 +57,7 @@ ] }, { - "key": "GetVerticalFit", + "base": "GetVerticalFit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Vertical Fit" @@ -80,7 +80,7 @@ ] }, { - "key": "SetVerticalFit", + "base": "SetVerticalFit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Vertical Fit" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutGridBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutGridBus.names index 40430d754f..0ac2f4eba0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutGridBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutGridBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutGridBus", + "base": "UiLayoutGridBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetStartingDirection", + "base": "GetStartingDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Starting Direction" @@ -33,7 +33,7 @@ ] }, { - "key": "SetHorizontalOrder", + "base": "SetHorizontalOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Horizontal Order" @@ -57,7 +57,7 @@ ] }, { - "key": "SetCellSize", + "base": "SetCellSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Cell Size" @@ -81,7 +81,7 @@ ] }, { - "key": "SetSpacing", + "base": "SetSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Spacing" @@ -105,7 +105,7 @@ ] }, { - "key": "GetSpacing", + "base": "GetSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Spacing" @@ -128,7 +128,7 @@ ] }, { - "key": "GetCellSize", + "base": "GetCellSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Cell Size" @@ -151,7 +151,7 @@ ] }, { - "key": "GetPadding", + "base": "GetPadding", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Padding" @@ -174,7 +174,7 @@ ] }, { - "key": "SetPadding", + "base": "SetPadding", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Padding" @@ -198,7 +198,7 @@ ] }, { - "key": "GetHorizontalOrder", + "base": "GetHorizontalOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Horizontal Order" @@ -221,7 +221,7 @@ ] }, { - "key": "GetVerticalOrder", + "base": "GetVerticalOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Vertical Order" @@ -244,7 +244,7 @@ ] }, { - "key": "SetVerticalOrder", + "base": "SetVerticalOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Vertical Order" @@ -268,7 +268,7 @@ ] }, { - "key": "SetStartingDirection", + "base": "SetStartingDirection", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Starting Direction" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutRowBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutRowBus.names index c4c714a0cb..ca27e01284 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutRowBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiLayoutRowBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiLayoutRowBus", + "base": "UiLayoutRowBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetSpacing", + "base": "SetSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Spacing" @@ -34,7 +34,7 @@ ] }, { - "key": "GetOrder", + "base": "GetOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Order" @@ -57,7 +57,7 @@ ] }, { - "key": "SetOrder", + "base": "SetOrder", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Order" @@ -81,7 +81,7 @@ ] }, { - "key": "GetSpacing", + "base": "GetSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Spacing" @@ -104,7 +104,7 @@ ] }, { - "key": "GetPadding", + "base": "GetPadding", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Padding" @@ -127,7 +127,7 @@ ] }, { - "key": "SetPadding", + "base": "SetPadding", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Padding" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiMarkupButtonBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiMarkupButtonBus.names index ac687d97bf..0e5de7b07c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiMarkupButtonBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiMarkupButtonBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiMarkupButtonBus", + "base": "UiMarkupButtonBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetLinkColor", + "base": "GetLinkColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Link Color" @@ -33,7 +33,7 @@ ] }, { - "key": "SetLinkColor", + "base": "SetLinkColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Link Color" @@ -57,7 +57,7 @@ ] }, { - "key": "GetLinkHoverColor", + "base": "GetLinkHoverColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Link Hover Color" @@ -80,7 +80,7 @@ ] }, { - "key": "SetLinkHoverColor", + "base": "SetLinkHoverColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Link Hover Color" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiMaskBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiMaskBus.names index 366f157871..178235f2a1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiMaskBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiMaskBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiMaskBus", + "base": "UiMaskBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetDrawInFront", + "base": "SetDrawInFront", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Draw In Front" @@ -34,7 +34,7 @@ ] }, { - "key": "GetUseRenderToTexture", + "base": "GetUseRenderToTexture", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Use Render To Texture" @@ -57,7 +57,7 @@ ] }, { - "key": "GetDrawInFront", + "base": "GetDrawInFront", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Draw In Front" @@ -80,7 +80,7 @@ ] }, { - "key": "GetDrawBehind", + "base": "GetDrawBehind", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Draw Behind" @@ -103,7 +103,7 @@ ] }, { - "key": "GetIsInteractionMaskingEnabled", + "base": "GetIsInteractionMaskingEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Interaction Masking Enabled" @@ -126,7 +126,7 @@ ] }, { - "key": "GetUseAlphaTest", + "base": "GetUseAlphaTest", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Use Alpha Test" @@ -149,7 +149,7 @@ ] }, { - "key": "SetIsMaskingEnabled", + "base": "SetIsMaskingEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Masking Enabled" @@ -173,7 +173,7 @@ ] }, { - "key": "SetUseRenderToTexture", + "base": "SetUseRenderToTexture", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Use Render To Texture" @@ -197,7 +197,7 @@ ] }, { - "key": "GetIsMaskingEnabled", + "base": "GetIsMaskingEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Masking Enabled" @@ -220,7 +220,7 @@ ] }, { - "key": "SetIsInteractionMaskingEnabled", + "base": "SetIsInteractionMaskingEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Interaction Masking Enabled" @@ -244,7 +244,7 @@ ] }, { - "key": "SetDrawBehind", + "base": "SetDrawBehind", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Draw Behind" @@ -268,7 +268,7 @@ ] }, { - "key": "SetUseAlphaTest", + "base": "SetUseAlphaTest", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Use Alpha Test" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiNavigationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiNavigationBus.names index 6fd6a83c3b..0ca8dd3b8b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiNavigationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiNavigationBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiNavigationBus", + "base": "UiNavigationBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetOnRightEntity", + "base": "GetOnRightEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get On Right Entity" @@ -34,7 +34,7 @@ ] }, { - "key": "SetOnLeftEntity", + "base": "SetOnLeftEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set On Left Entity" @@ -58,7 +58,7 @@ ] }, { - "key": "GetOnLeftEntity", + "base": "GetOnLeftEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get On Left Entity" @@ -82,7 +82,7 @@ ] }, { - "key": "SetOnDownEntity", + "base": "SetOnDownEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set On Down Entity" @@ -106,7 +106,7 @@ ] }, { - "key": "GetOnUpEntity", + "base": "GetOnUpEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get On Up Entity" @@ -130,7 +130,7 @@ ] }, { - "key": "SetOnUpEntity", + "base": "SetOnUpEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set On Up Entity" @@ -154,7 +154,7 @@ ] }, { - "key": "SetOnRightEntity", + "base": "SetOnRightEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set On Right Entity" @@ -178,7 +178,7 @@ ] }, { - "key": "SetNavigationMode", + "base": "SetNavigationMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Navigation Mode" @@ -202,7 +202,7 @@ ] }, { - "key": "GetOnDownEntity", + "base": "GetOnDownEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get On Down Entity" @@ -226,7 +226,7 @@ ] }, { - "key": "GetNavigationMode", + "base": "GetNavigationMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Navigation Mode" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiParticleEmitterBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiParticleEmitterBus.names index 4803b9fe8b..c408434db4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiParticleEmitterBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiParticleEmitterBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiParticleEmitterBus", + "base": "UiParticleEmitterBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetParticleColorTintVariation", + "base": "SetParticleColorTintVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Color Tint Variation" @@ -34,7 +34,7 @@ ] }, { - "key": "GetSpriteSheetFrameDelay", + "base": "GetSpriteSheetFrameDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sprite Sheet Frame Delay" @@ -57,7 +57,7 @@ ] }, { - "key": "SetParticleAlpha", + "base": "SetParticleAlpha", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Alpha" @@ -81,7 +81,7 @@ ] }, { - "key": "GetIsEmitting", + "base": "GetIsEmitting", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Emitting" @@ -104,7 +104,7 @@ ] }, { - "key": "SetParticleHeight", + "base": "SetParticleHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Height" @@ -128,7 +128,7 @@ ] }, { - "key": "GetSpriteSheetCellIndex", + "base": "GetSpriteSheetCellIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sprite Sheet Cell Index" @@ -151,7 +151,7 @@ ] }, { - "key": "GetIsParticleInitialRotationFromInitialVelocity", + "base": "GetIsParticleInitialRotationFromInitialVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Particle Initial Rotation From Initial Velocity" @@ -174,7 +174,7 @@ ] }, { - "key": "GetParticleLifetime", + "base": "GetParticleLifetime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Lifetime" @@ -197,7 +197,7 @@ ] }, { - "key": "GetIsRandomSeedFixed", + "base": "GetIsRandomSeedFixed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Random Seed Fixed" @@ -220,7 +220,7 @@ ] }, { - "key": "GetSpritePathname", + "base": "GetSpritePathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sprite Pathname" @@ -243,7 +243,7 @@ ] }, { - "key": "GetParticleLifetimeVariation", + "base": "GetParticleLifetimeVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Lifetime Variation" @@ -266,7 +266,7 @@ ] }, { - "key": "GetParticleColor", + "base": "GetParticleColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Color" @@ -289,7 +289,7 @@ ] }, { - "key": "GetParticleInitialRotationVariation", + "base": "GetParticleInitialRotationVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Initial Rotation Variation" @@ -312,7 +312,7 @@ ] }, { - "key": "SetParticleLifetimeVariation", + "base": "SetParticleLifetimeVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Lifetime Variation" @@ -336,7 +336,7 @@ ] }, { - "key": "GetIsEmitOnEdge", + "base": "GetIsEmitOnEdge", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Emit On Edge" @@ -359,7 +359,7 @@ ] }, { - "key": "GetParticleRotationSpeedVariation", + "base": "GetParticleRotationSpeedVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Rotation Speed Variation" @@ -382,7 +382,7 @@ ] }, { - "key": "SetIsEmitOnActivate", + "base": "SetIsEmitOnActivate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Emit On Activate" @@ -406,7 +406,7 @@ ] }, { - "key": "GetParticleRotationSpeed", + "base": "GetParticleRotationSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Rotation Speed" @@ -429,7 +429,7 @@ ] }, { - "key": "SetParticleRotationSpeed", + "base": "SetParticleRotationSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Rotation Speed" @@ -453,7 +453,7 @@ ] }, { - "key": "GetIsParticlePositionRelativeToEmitter", + "base": "GetIsParticlePositionRelativeToEmitter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Particle Position Relative To Emitter" @@ -476,7 +476,7 @@ ] }, { - "key": "SetIsParticleAspectRatioLocked", + "base": "SetIsParticleAspectRatioLocked", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Particle Aspect Ratio Locked" @@ -500,7 +500,7 @@ ] }, { - "key": "SetEmitAngleVariation", + "base": "SetEmitAngleVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Emit Angle Variation" @@ -524,7 +524,7 @@ ] }, { - "key": "SetParticleLifetime", + "base": "SetParticleLifetime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Lifetime" @@ -548,7 +548,7 @@ ] }, { - "key": "SetSpriteSheetFrameDelay", + "base": "SetSpriteSheetFrameDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sprite Sheet Frame Delay" @@ -572,7 +572,7 @@ ] }, { - "key": "SetIsParticleInitialRotationFromInitialVelocity", + "base": "SetIsParticleInitialRotationFromInitialVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Particle Initial Rotation From Initial Velocity" @@ -596,7 +596,7 @@ ] }, { - "key": "SetParticleAccelerationMovementSpace", + "base": "SetParticleAccelerationMovementSpace", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Acceleration Movement Space" @@ -620,7 +620,7 @@ ] }, { - "key": "SetIsSpriteSheetAnimated", + "base": "SetIsSpriteSheetAnimated", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Sprite Sheet Animated" @@ -644,7 +644,7 @@ ] }, { - "key": "SetIsParticleCountLimited", + "base": "SetIsParticleCountLimited", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Particle Count Limited" @@ -668,7 +668,7 @@ ] }, { - "key": "GetParticleSize", + "base": "GetParticleSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Size" @@ -691,7 +691,7 @@ ] }, { - "key": "GetParticleAccelerationMovementSpace", + "base": "GetParticleAccelerationMovementSpace", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Acceleration Movement Space" @@ -714,7 +714,7 @@ ] }, { - "key": "SetEmitAngle", + "base": "SetEmitAngle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Emit Angle" @@ -738,7 +738,7 @@ ] }, { - "key": "SetParticleEmitRate", + "base": "SetParticleEmitRate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Emit Rate" @@ -762,7 +762,7 @@ ] }, { - "key": "GetMaxParticles", + "base": "GetMaxParticles", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Max Particles" @@ -785,7 +785,7 @@ ] }, { - "key": "GetParticleColorBrightnessVariation", + "base": "GetParticleColorBrightnessVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Color Brightness Variation" @@ -808,7 +808,7 @@ ] }, { - "key": "SetMaxParticles", + "base": "SetMaxParticles", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Max Particles" @@ -832,7 +832,7 @@ ] }, { - "key": "GetInsideEmitDistance", + "base": "GetInsideEmitDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Inside Emit Distance" @@ -855,7 +855,7 @@ ] }, { - "key": "SetParticlePivot", + "base": "SetParticlePivot", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Pivot" @@ -879,7 +879,7 @@ ] }, { - "key": "GetParticleInitialDirectionType", + "base": "GetParticleInitialDirectionType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Initial Direction Type" @@ -902,7 +902,7 @@ ] }, { - "key": "SetEmitterLifetime", + "base": "SetEmitterLifetime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Emitter Lifetime" @@ -926,7 +926,7 @@ ] }, { - "key": "GetSpriteSheetCellEndIndex", + "base": "GetSpriteSheetCellEndIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Sprite Sheet Cell End Index" @@ -949,7 +949,7 @@ ] }, { - "key": "SetIsEmitOnEdge", + "base": "SetIsEmitOnEdge", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Emit On Edge" @@ -973,7 +973,7 @@ ] }, { - "key": "GetParticleColorTintVariation", + "base": "GetParticleColorTintVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Color Tint Variation" @@ -996,7 +996,7 @@ ] }, { - "key": "SetParticleInitialVelocity", + "base": "SetParticleInitialVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Initial Velocity" @@ -1020,7 +1020,7 @@ ] }, { - "key": "GetIsParticleCountLimited", + "base": "GetIsParticleCountLimited", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Particle Count Limited" @@ -1043,7 +1043,7 @@ ] }, { - "key": "SetParticleWidthVariation", + "base": "SetParticleWidthVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Width Variation" @@ -1067,7 +1067,7 @@ ] }, { - "key": "GetOutsideEmitDistance", + "base": "GetOutsideEmitDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Outside Emit Distance" @@ -1090,7 +1090,7 @@ ] }, { - "key": "GetIsParticleLifetimeInfinite", + "base": "GetIsParticleLifetimeInfinite", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Particle Lifetime Infinite" @@ -1113,7 +1113,7 @@ ] }, { - "key": "SetIsParticleRotationFromVelocity", + "base": "SetIsParticleRotationFromVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Particle Rotation From Velocity" @@ -1137,7 +1137,7 @@ ] }, { - "key": "GetIsSpriteSheetAnimated", + "base": "GetIsSpriteSheetAnimated", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Sprite Sheet Animated" @@ -1160,7 +1160,7 @@ ] }, { - "key": "SetInsideEmitDistance", + "base": "SetInsideEmitDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Inside Emit Distance" @@ -1184,7 +1184,7 @@ ] }, { - "key": "SetSpritePathname", + "base": "SetSpritePathname", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sprite Pathname" @@ -1208,7 +1208,7 @@ ] }, { - "key": "GetEmitterShape", + "base": "GetEmitterShape", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Emitter Shape" @@ -1231,7 +1231,7 @@ ] }, { - "key": "SetOutsideEmitDistance", + "base": "SetOutsideEmitDistance", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Outside Emit Distance" @@ -1255,7 +1255,7 @@ ] }, { - "key": "SetRandomSeed", + "base": "SetRandomSeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Random Seed" @@ -1279,7 +1279,7 @@ ] }, { - "key": "GetIsParticleRotationFromVelocity", + "base": "GetIsParticleRotationFromVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Particle Rotation From Velocity" @@ -1302,7 +1302,7 @@ ] }, { - "key": "GetRandomSeed", + "base": "GetRandomSeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Random Seed" @@ -1325,7 +1325,7 @@ ] }, { - "key": "GetParticleEmitRate", + "base": "GetParticleEmitRate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Emit Rate" @@ -1348,7 +1348,7 @@ ] }, { - "key": "GetIsSpriteSheetIndexRandom", + "base": "GetIsSpriteSheetIndexRandom", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Sprite Sheet Index Random" @@ -1371,7 +1371,7 @@ ] }, { - "key": "SetIsEmitting", + "base": "SetIsEmitting", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Emitting" @@ -1395,7 +1395,7 @@ ] }, { - "key": "GetParticleWidth", + "base": "GetParticleWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Width" @@ -1418,7 +1418,7 @@ ] }, { - "key": "GetParticleInitialRotation", + "base": "GetParticleInitialRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Initial Rotation" @@ -1441,7 +1441,7 @@ ] }, { - "key": "SetIsSpriteSheetAnimationLooped", + "base": "SetIsSpriteSheetAnimationLooped", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Sprite Sheet Animation Looped" @@ -1465,7 +1465,7 @@ ] }, { - "key": "SetParticleInitialRotationVariation", + "base": "SetParticleInitialRotationVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Initial Rotation Variation" @@ -1489,7 +1489,7 @@ ] }, { - "key": "SetIsRandomSeedFixed", + "base": "SetIsRandomSeedFixed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Random Seed Fixed" @@ -1513,7 +1513,7 @@ ] }, { - "key": "SetIsEmitterLifetimeInfinite", + "base": "SetIsEmitterLifetimeInfinite", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Emitter Lifetime Infinite" @@ -1537,7 +1537,7 @@ ] }, { - "key": "GetEmitAngle", + "base": "GetEmitAngle", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Emit Angle" @@ -1560,7 +1560,7 @@ ] }, { - "key": "GetIsEmitterLifetimeInfinite", + "base": "GetIsEmitterLifetimeInfinite", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Emitter Lifetime Infinite" @@ -1583,7 +1583,7 @@ ] }, { - "key": "SetIsHitParticleCountOnActivate", + "base": "SetIsHitParticleCountOnActivate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Hit Particle Count On Activate" @@ -1607,7 +1607,7 @@ ] }, { - "key": "SetParticleMovementCoordinateType", + "base": "SetParticleMovementCoordinateType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Movement Coordinate Type" @@ -1631,7 +1631,7 @@ ] }, { - "key": "SetSpriteSheetCellEndIndex", + "base": "SetSpriteSheetCellEndIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sprite Sheet Cell End Index" @@ -1655,7 +1655,7 @@ ] }, { - "key": "SetParticleColor", + "base": "SetParticleColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Color" @@ -1679,7 +1679,7 @@ ] }, { - "key": "SetSpriteSheetCellIndex", + "base": "SetSpriteSheetCellIndex", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Sprite Sheet Cell Index" @@ -1703,7 +1703,7 @@ ] }, { - "key": "SetIsParticleLifetimeInfinite", + "base": "SetIsParticleLifetimeInfinite", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Particle Lifetime Infinite" @@ -1727,7 +1727,7 @@ ] }, { - "key": "SetParticleSpeed", + "base": "SetParticleSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Speed" @@ -1751,7 +1751,7 @@ ] }, { - "key": "GetIsHitParticleCountOnActivate", + "base": "GetIsHitParticleCountOnActivate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Hit Particle Count On Activate" @@ -1774,7 +1774,7 @@ ] }, { - "key": "GetParticleAlpha", + "base": "GetParticleAlpha", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Alpha" @@ -1797,7 +1797,7 @@ ] }, { - "key": "GetEmitAngleVariation", + "base": "GetEmitAngleVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Emit Angle Variation" @@ -1820,7 +1820,7 @@ ] }, { - "key": "SetEmitterShape", + "base": "SetEmitterShape", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Emitter Shape" @@ -1844,7 +1844,7 @@ ] }, { - "key": "GetParticleSpeedVariation", + "base": "GetParticleSpeedVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Speed Variation" @@ -1867,7 +1867,7 @@ ] }, { - "key": "SetParticleAcceleration", + "base": "SetParticleAcceleration", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Acceleration" @@ -1891,7 +1891,7 @@ ] }, { - "key": "SetParticleSpeedVariation", + "base": "SetParticleSpeedVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Speed Variation" @@ -1915,7 +1915,7 @@ ] }, { - "key": "GetIsParticleAspectRatioLocked", + "base": "GetIsParticleAspectRatioLocked", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Particle Aspect Ratio Locked" @@ -1938,7 +1938,7 @@ ] }, { - "key": "GetIsSpriteSheetAnimationLooped", + "base": "GetIsSpriteSheetAnimationLooped", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Sprite Sheet Animation Looped" @@ -1961,7 +1961,7 @@ ] }, { - "key": "GetParticleAcceleration", + "base": "GetParticleAcceleration", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Acceleration" @@ -1984,7 +1984,7 @@ ] }, { - "key": "SetIsSpriteSheetIndexRandom", + "base": "SetIsSpriteSheetIndexRandom", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Sprite Sheet Index Random" @@ -2008,7 +2008,7 @@ ] }, { - "key": "GetParticleMovementCoordinateType", + "base": "GetParticleMovementCoordinateType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Movement Coordinate Type" @@ -2031,7 +2031,7 @@ ] }, { - "key": "GetParticleInitialVelocity", + "base": "GetParticleInitialVelocity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Initial Velocity" @@ -2054,7 +2054,7 @@ ] }, { - "key": "SetParticleWidth", + "base": "SetParticleWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Width" @@ -2078,7 +2078,7 @@ ] }, { - "key": "SetParticleSize", + "base": "SetParticleSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Size" @@ -2102,7 +2102,7 @@ ] }, { - "key": "GetEmitterLifetime", + "base": "GetEmitterLifetime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Emitter Lifetime" @@ -2125,7 +2125,7 @@ ] }, { - "key": "GetParticleSpeed", + "base": "GetParticleSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Speed" @@ -2148,7 +2148,7 @@ ] }, { - "key": "SetParticleRotationSpeedVariation", + "base": "SetParticleRotationSpeedVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Rotation Speed Variation" @@ -2172,7 +2172,7 @@ ] }, { - "key": "GetParticleHeight", + "base": "GetParticleHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Height" @@ -2195,7 +2195,7 @@ ] }, { - "key": "SetParticleHeightVariation", + "base": "SetParticleHeightVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Height Variation" @@ -2219,7 +2219,7 @@ ] }, { - "key": "SetParticleInitialRotation", + "base": "SetParticleInitialRotation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Initial Rotation" @@ -2243,7 +2243,7 @@ ] }, { - "key": "GetParticlePivot", + "base": "GetParticlePivot", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Pivot" @@ -2266,7 +2266,7 @@ ] }, { - "key": "GetParticleWidthVariation", + "base": "GetParticleWidthVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Width Variation" @@ -2289,7 +2289,7 @@ ] }, { - "key": "GetIsEmitOnActivate", + "base": "GetIsEmitOnActivate", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Emit On Activate" @@ -2312,7 +2312,7 @@ ] }, { - "key": "SetIsParticlePositionRelativeToEmitter", + "base": "SetIsParticlePositionRelativeToEmitter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Particle Position Relative To Emitter" @@ -2336,7 +2336,7 @@ ] }, { - "key": "SetParticleInitialDirectionType", + "base": "SetParticleInitialDirectionType", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Initial Direction Type" @@ -2360,7 +2360,7 @@ ] }, { - "key": "GetParticleHeightVariation", + "base": "GetParticleHeightVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Particle Height Variation" @@ -2383,7 +2383,7 @@ ] }, { - "key": "SetParticleColorBrightnessVariation", + "base": "SetParticleColorBrightnessVariation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Particle Color Brightness Variation" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiRadioButtonBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiRadioButtonBus.names index 42e23202c6..292353e770 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiRadioButtonBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiRadioButtonBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiRadioButtonBus", + "base": "UiRadioButtonBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetChangedActionName", + "base": "SetChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Changed Action Name" @@ -34,7 +34,7 @@ ] }, { - "key": "GetChangedActionName", + "base": "GetChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Changed Action Name" @@ -57,7 +57,7 @@ ] }, { - "key": "SetCheckedEntity", + "base": "SetCheckedEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Checked Entity" @@ -81,7 +81,7 @@ ] }, { - "key": "SetUncheckedEntity", + "base": "SetUncheckedEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Unchecked Entity" @@ -105,7 +105,7 @@ ] }, { - "key": "SetTurnOnActionName", + "base": "SetTurnOnActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Turn On Action Name" @@ -129,7 +129,7 @@ ] }, { - "key": "GetTurnOffActionName", + "base": "GetTurnOffActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Turn Off Action Name" @@ -152,7 +152,7 @@ ] }, { - "key": "GetGroup", + "base": "GetGroup", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Group" @@ -176,7 +176,7 @@ ] }, { - "key": "GetState", + "base": "GetState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get State" @@ -199,7 +199,7 @@ ] }, { - "key": "GetCheckedEntity", + "base": "GetCheckedEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Checked Entity" @@ -223,7 +223,7 @@ ] }, { - "key": "GetUncheckedEntity", + "base": "GetUncheckedEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Unchecked Entity" @@ -247,7 +247,7 @@ ] }, { - "key": "GetTurnOnActionName", + "base": "GetTurnOnActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Turn On Action Name" @@ -270,7 +270,7 @@ ] }, { - "key": "SetTurnOffActionName", + "base": "SetTurnOffActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Turn Off Action Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiRadioButtonGroupBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiRadioButtonGroupBus.names index 2cde33edfb..f0a4172a6f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiRadioButtonGroupBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiRadioButtonGroupBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiRadioButtonGroupBus", + "base": "UiRadioButtonGroupBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "AddRadioButton", + "base": "AddRadioButton", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Add Radio Button" @@ -34,7 +34,7 @@ ] }, { - "key": "SetChangedActionName", + "base": "SetChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Changed Action Name" @@ -58,7 +58,7 @@ ] }, { - "key": "SetAllowUncheck", + "base": "SetAllowUncheck", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Allow Uncheck" @@ -82,7 +82,7 @@ ] }, { - "key": "ContainsRadioButton", + "base": "ContainsRadioButton", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Contains Radio Button" @@ -115,7 +115,7 @@ ] }, { - "key": "GetChangedActionName", + "base": "GetChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Changed Action Name" @@ -138,7 +138,7 @@ ] }, { - "key": "GetAllowUncheck", + "base": "GetAllowUncheck", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Allow Uncheck" @@ -161,7 +161,7 @@ ] }, { - "key": "RemoveRadioButton", + "base": "RemoveRadioButton", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Remove Radio Button" @@ -185,7 +185,7 @@ ] }, { - "key": "SetState", + "base": "SetState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set State" @@ -216,7 +216,7 @@ ] }, { - "key": "GetState", + "base": "GetState", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get State" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollBarBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollBarBus.names index 8ca81f9cca..9f77750c89 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollBarBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollBarBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiScrollBarBus", + "base": "UiScrollBarBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetAutoFadeSpeed", + "base": "GetAutoFadeSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAutoFadeSpeed" @@ -32,7 +32,7 @@ ] }, { - "key": "IsAutoFadeEnabled", + "base": "IsAutoFadeEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke IsAutoFadeEnabled" @@ -54,7 +54,7 @@ ] }, { - "key": "SetAutoFadeSpeed", + "base": "SetAutoFadeSpeed", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAutoFadeSpeed" @@ -76,7 +76,7 @@ ] }, { - "key": "SetHandleEntity", + "base": "SetHandleEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Handle Entity" @@ -100,7 +100,7 @@ ] }, { - "key": "GetHandleEntity", + "base": "GetHandleEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Handle Entity" @@ -124,7 +124,7 @@ ] }, { - "key": "GetAutoFadeDelay", + "base": "GetAutoFadeDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetAutoFadeDelay" @@ -146,7 +146,7 @@ ] }, { - "key": "GetMinHandlePixelSize", + "base": "GetMinHandlePixelSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Min Handle Pixel Size" @@ -169,7 +169,7 @@ ] }, { - "key": "SetAutoFadeEnabled", + "base": "SetAutoFadeEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAutoFadeEnabled" @@ -191,7 +191,7 @@ ] }, { - "key": "SetHandleSize", + "base": "SetHandleSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Handle Size" @@ -215,7 +215,7 @@ ] }, { - "key": "SetMinHandlePixelSize", + "base": "SetMinHandlePixelSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Min Handle Pixel Size" @@ -239,7 +239,7 @@ ] }, { - "key": "GetHandleSize", + "base": "GetHandleSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Handle Size" @@ -262,7 +262,7 @@ ] }, { - "key": "SetAutoFadeDelay", + "base": "SetAutoFadeDelay", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetAutoFadeDelay" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollBoxBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollBoxBus.names index 9198231a79..0b5c2ef252 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollBoxBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollBoxBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiScrollBoxBus", + "base": "UiScrollBoxBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "FindClosestContentChildElement", + "base": "FindClosestContentChildElement", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Find Closest Content Child Element" @@ -34,7 +34,7 @@ ] }, { - "key": "GetHorizontalScrollBarVisibility", + "base": "GetHorizontalScrollBarVisibility", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Horizontal Scroll Bar Visibility" @@ -57,7 +57,7 @@ ] }, { - "key": "GetVerticalScrollBarEntity", + "base": "GetVerticalScrollBarEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Vertical Scroll Bar Entity" @@ -81,7 +81,7 @@ ] }, { - "key": "SetHorizontalScrollBarVisibility", + "base": "SetHorizontalScrollBarVisibility", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Horizontal Scroll Bar Visibility" @@ -105,7 +105,7 @@ ] }, { - "key": "SetScrollOffsetChangingActionName", + "base": "SetScrollOffsetChangingActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Scroll Offset Changing Action Name" @@ -129,7 +129,7 @@ ] }, { - "key": "GetScrollOffsetChangingActionName", + "base": "GetScrollOffsetChangingActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Scroll Offset Changing Action Name" @@ -152,7 +152,7 @@ ] }, { - "key": "GetHorizontalScrollBarEntity", + "base": "GetHorizontalScrollBarEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Horizontal Scroll Bar Entity" @@ -176,7 +176,7 @@ ] }, { - "key": "HasHorizontalContentToScroll", + "base": "HasHorizontalContentToScroll", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Has Horizontal Content To Scroll" @@ -199,7 +199,7 @@ ] }, { - "key": "SetContentEntity", + "base": "SetContentEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Content Entity" @@ -223,7 +223,7 @@ ] }, { - "key": "GetIsScrollingConstrained", + "base": "GetIsScrollingConstrained", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Scrolling Constrained" @@ -246,7 +246,7 @@ ] }, { - "key": "HasVerticalContentToScroll", + "base": "HasVerticalContentToScroll", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Has Vertical Content To Scroll" @@ -269,7 +269,7 @@ ] }, { - "key": "GetIsVerticalScrollingEnabled", + "base": "GetIsVerticalScrollingEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Vertical Scrolling Enabled" @@ -292,7 +292,7 @@ ] }, { - "key": "GetVerticalScrollBarVisibility", + "base": "GetVerticalScrollBarVisibility", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Vertical Scroll Bar Visibility" @@ -315,7 +315,7 @@ ] }, { - "key": "SetIsHorizontalScrollingEnabled", + "base": "SetIsHorizontalScrollingEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Horizontal Scrolling Enabled" @@ -339,7 +339,7 @@ ] }, { - "key": "GetNormalizedScrollValue", + "base": "GetNormalizedScrollValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Normalized Scroll Value" @@ -362,7 +362,7 @@ ] }, { - "key": "SetScrollOffset", + "base": "SetScrollOffset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Scroll Offset" @@ -386,7 +386,7 @@ ] }, { - "key": "SetHorizontalScrollBarEntity", + "base": "SetHorizontalScrollBarEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Horizontal Scroll Bar Entity" @@ -410,7 +410,7 @@ ] }, { - "key": "GetScrollOffset", + "base": "GetScrollOffset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Scroll Offset" @@ -433,7 +433,7 @@ ] }, { - "key": "GetScrollOffsetChangedActionName", + "base": "GetScrollOffsetChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Scroll Offset Changed Action Name" @@ -456,7 +456,7 @@ ] }, { - "key": "SetVerticalScrollBarVisibility", + "base": "SetVerticalScrollBarVisibility", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Vertical Scroll Bar Visibility" @@ -480,7 +480,7 @@ ] }, { - "key": "GetIsHorizontalScrollingEnabled", + "base": "GetIsHorizontalScrollingEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Horizontal Scrolling Enabled" @@ -503,7 +503,7 @@ ] }, { - "key": "SetIsScrollingConstrained", + "base": "SetIsScrollingConstrained", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Scrolling Constrained" @@ -527,7 +527,7 @@ ] }, { - "key": "SetSnapGrid", + "base": "SetSnapGrid", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Snap Grid" @@ -551,7 +551,7 @@ ] }, { - "key": "SetIsVerticalScrollingEnabled", + "base": "SetIsVerticalScrollingEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Vertical Scrolling Enabled" @@ -575,7 +575,7 @@ ] }, { - "key": "GetSnapGrid", + "base": "GetSnapGrid", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Snap Grid" @@ -598,7 +598,7 @@ ] }, { - "key": "GetSnapMode", + "base": "GetSnapMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Snap Mode" @@ -621,7 +621,7 @@ ] }, { - "key": "SetScrollOffsetChangedActionName", + "base": "SetScrollOffsetChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Scroll Offset Changed Action Name" @@ -645,7 +645,7 @@ ] }, { - "key": "SetVerticalScrollBarEntity", + "base": "SetVerticalScrollBarEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Vertical Scroll Bar Entity" @@ -669,7 +669,7 @@ ] }, { - "key": "GetContentEntity", + "base": "GetContentEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Content Entity" @@ -693,7 +693,7 @@ ] }, { - "key": "SetSnapMode", + "base": "SetSnapMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Snap Mode" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollerBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollerBus.names index c2b3fd4a76..4bb1ea334d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollerBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiScrollerBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiScrollerBus", + "base": "UiScrollerBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetValueChangedActionName", + "base": "GetValueChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Value Changed Action Name" @@ -33,7 +33,7 @@ ] }, { - "key": "SetOrientation", + "base": "SetOrientation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Orientation" @@ -57,7 +57,7 @@ ] }, { - "key": "GetOrientation", + "base": "GetOrientation", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Orientation" @@ -80,7 +80,7 @@ ] }, { - "key": "GetValueChangingActionName", + "base": "GetValueChangingActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Value Changing Action Name" @@ -103,7 +103,7 @@ ] }, { - "key": "SetValueChangingActionName", + "base": "SetValueChangingActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Value Changing Action Name" @@ -127,7 +127,7 @@ ] }, { - "key": "SetValue", + "base": "SetValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Value" @@ -151,7 +151,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Value" @@ -174,7 +174,7 @@ ] }, { - "key": "SetValueChangedActionName", + "base": "SetValueChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Value Changed Action Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiSliderBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiSliderBus.names index 48e06905c7..e9d5e49722 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiSliderBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiSliderBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiSliderBus", + "base": "UiSliderBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetValueChangingActionName", + "base": "GetValueChangingActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Value Changing Action Name" @@ -33,7 +33,7 @@ ] }, { - "key": "SetValueChangingActionName", + "base": "SetValueChangingActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Value Changing Action Name" @@ -57,7 +57,7 @@ ] }, { - "key": "GetManipulatorEntity", + "base": "GetManipulatorEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Manipulator Entity" @@ -81,7 +81,7 @@ ] }, { - "key": "SetTrackEntity", + "base": "SetTrackEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Track Entity" @@ -105,7 +105,7 @@ ] }, { - "key": "GetFillEntity", + "base": "GetFillEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Fill Entity" @@ -129,7 +129,7 @@ ] }, { - "key": "SetFillEntity", + "base": "SetFillEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Fill Entity" @@ -153,7 +153,7 @@ ] }, { - "key": "SetManipulatorEntity", + "base": "SetManipulatorEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Manipulator Entity" @@ -177,7 +177,7 @@ ] }, { - "key": "GetValueChangedActionName", + "base": "GetValueChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Value Changed Action Name" @@ -200,7 +200,7 @@ ] }, { - "key": "GetTrackEntity", + "base": "GetTrackEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Track Entity" @@ -224,7 +224,7 @@ ] }, { - "key": "GetMinValue", + "base": "GetMinValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Min Value" @@ -247,7 +247,7 @@ ] }, { - "key": "SetMinValue", + "base": "SetMinValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Min Value" @@ -271,7 +271,7 @@ ] }, { - "key": "SetStepValue", + "base": "SetStepValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Step Value" @@ -295,7 +295,7 @@ ] }, { - "key": "SetValue", + "base": "SetValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Value" @@ -319,7 +319,7 @@ ] }, { - "key": "SetMaxValue", + "base": "SetMaxValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Max Value" @@ -343,7 +343,7 @@ ] }, { - "key": "GetStepValue", + "base": "GetStepValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Step Value" @@ -366,7 +366,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Value" @@ -389,7 +389,7 @@ ] }, { - "key": "GetMaxValue", + "base": "GetMaxValue", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Max Value" @@ -412,7 +412,7 @@ ] }, { - "key": "SetValueChangedActionName", + "base": "SetValueChangedActionName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Value Changed Action Name" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiSpawnerBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiSpawnerBus.names index 013efee91d..cc1ed40f00 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiSpawnerBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiSpawnerBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiSpawnerBus", + "base": "UiSpawnerBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "Spawn", + "base": "Spawn", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Spawn" @@ -33,7 +33,7 @@ ] }, { - "key": "SpawnRelative", + "base": "SpawnRelative", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Spawn Relative" @@ -66,7 +66,7 @@ ] }, { - "key": "SpawnAbsolute", + "base": "SpawnAbsolute", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Spawn Absolute" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTextBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTextBus.names index 1bc31f0a93..26fd061c0c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTextBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTextBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTextBus", + "base": "UiTextBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetTextHeight", + "base": "GetTextHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text Height" @@ -33,7 +33,7 @@ ] }, { - "key": "GetColor", + "base": "GetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Color" @@ -56,7 +56,7 @@ ] }, { - "key": "GetLineSpacing", + "base": "GetLineSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Line Spacing" @@ -79,7 +79,7 @@ ] }, { - "key": "GetTextWidth", + "base": "GetTextWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text Width" @@ -102,7 +102,7 @@ ] }, { - "key": "SetWrapText", + "base": "SetWrapText", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Wrap Text" @@ -126,7 +126,7 @@ ] }, { - "key": "GetFontEffectName", + "base": "GetFontEffectName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Font Effect Name" @@ -159,7 +159,7 @@ ] }, { - "key": "GetShrinkToFit", + "base": "GetShrinkToFit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Shrink To Fit" @@ -182,7 +182,7 @@ ] }, { - "key": "GetOverflowMode", + "base": "GetOverflowMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Overflow Mode" @@ -205,7 +205,7 @@ ] }, { - "key": "GetFontEffect", + "base": "GetFontEffect", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Font Effect" @@ -228,7 +228,7 @@ ] }, { - "key": "SetFontEffect", + "base": "SetFontEffect", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Font Effect" @@ -252,7 +252,7 @@ ] }, { - "key": "GetHorizontalTextAlignment", + "base": "GetHorizontalTextAlignment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Horizontal Text Alignment" @@ -275,7 +275,7 @@ ] }, { - "key": "GetFont", + "base": "GetFont", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Font" @@ -298,7 +298,7 @@ ] }, { - "key": "SetVerticalTextAlignment", + "base": "SetVerticalTextAlignment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Vertical Text Alignment" @@ -322,7 +322,7 @@ ] }, { - "key": "GetVerticalTextAlignment", + "base": "GetVerticalTextAlignment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Vertical Text Alignment" @@ -345,7 +345,7 @@ ] }, { - "key": "SetOverflowMode", + "base": "SetOverflowMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Overflow Mode" @@ -369,7 +369,7 @@ ] }, { - "key": "SetColor", + "base": "SetColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Color" @@ -393,7 +393,7 @@ ] }, { - "key": "SetFontSize", + "base": "SetFontSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Font Size" @@ -417,7 +417,7 @@ ] }, { - "key": "SetCharacterSpacing", + "base": "SetCharacterSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Character Spacing" @@ -441,7 +441,7 @@ ] }, { - "key": "SetLineSpacing", + "base": "SetLineSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Line Spacing" @@ -465,7 +465,7 @@ ] }, { - "key": "GetCharacterSpacing", + "base": "GetCharacterSpacing", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Character Spacing" @@ -488,7 +488,7 @@ ] }, { - "key": "SetHorizontalTextAlignment", + "base": "SetHorizontalTextAlignment", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Horizontal Text Alignment" @@ -512,7 +512,7 @@ ] }, { - "key": "SetText", + "base": "SetText", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text" @@ -536,7 +536,7 @@ ] }, { - "key": "SetFont", + "base": "SetFont", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Font" @@ -560,7 +560,7 @@ ] }, { - "key": "SetFontEffectByName", + "base": "SetFontEffectByName", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Font Effect By Name" @@ -584,7 +584,7 @@ ] }, { - "key": "SetIsMarkupEnabled", + "base": "SetIsMarkupEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Markup Enabled" @@ -608,7 +608,7 @@ ] }, { - "key": "GetWrapText", + "base": "GetWrapText", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Wrap Text" @@ -631,7 +631,7 @@ ] }, { - "key": "GetText", + "base": "GetText", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text" @@ -654,7 +654,7 @@ ] }, { - "key": "GetTextSize", + "base": "GetTextSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTextSize" @@ -676,7 +676,7 @@ ] }, { - "key": "GetIsMarkupEnabled", + "base": "GetIsMarkupEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Is Markup Enabled" @@ -699,7 +699,7 @@ ] }, { - "key": "GetFontSize", + "base": "GetFontSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Font Size" @@ -722,7 +722,7 @@ ] }, { - "key": "SetShrinkToFit", + "base": "SetShrinkToFit", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Shrink To Fit" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTextInputBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTextInputBus.names index b8a8cd69da..cff4ff2e7f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTextInputBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTextInputBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTextInputBus", + "base": "UiTextInputBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SetChangeAction", + "base": "SetChangeAction", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Change Action" @@ -34,7 +34,7 @@ ] }, { - "key": "GetEndEditAction", + "base": "GetEndEditAction", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get End Edit Action" @@ -57,7 +57,7 @@ ] }, { - "key": "SetEndEditAction", + "base": "SetEndEditAction", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set End Edit Action" @@ -81,7 +81,7 @@ ] }, { - "key": "GetPlaceHolderTextEntity", + "base": "GetPlaceHolderTextEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Placeholder Text Entity" @@ -105,7 +105,7 @@ ] }, { - "key": "GetIsPasswordField", + "base": "GetIsPasswordField", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Is Password Field" @@ -128,7 +128,7 @@ ] }, { - "key": "GetChangeAction", + "base": "GetChangeAction", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Change Action" @@ -151,7 +151,7 @@ ] }, { - "key": "SetEnterAction", + "base": "SetEnterAction", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Enter Action" @@ -175,7 +175,7 @@ ] }, { - "key": "SetText", + "base": "SetText", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text" @@ -199,7 +199,7 @@ ] }, { - "key": "SetIsClipboardEnabled", + "base": "SetIsClipboardEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetIsClipboardEnabled" @@ -221,7 +221,7 @@ ] }, { - "key": "SetMaxStringLength", + "base": "SetMaxStringLength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Max String Length" @@ -245,7 +245,7 @@ ] }, { - "key": "GetEnterAction", + "base": "GetEnterAction", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Enter Action" @@ -268,7 +268,7 @@ ] }, { - "key": "GetText", + "base": "GetText", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text" @@ -291,7 +291,7 @@ ] }, { - "key": "GetCursorBlinkInterval", + "base": "GetCursorBlinkInterval", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Cursor Blink Interval" @@ -314,7 +314,7 @@ ] }, { - "key": "GetMaxStringLength", + "base": "GetMaxStringLength", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Max String Length" @@ -337,7 +337,7 @@ ] }, { - "key": "SetIsPasswordField", + "base": "SetIsPasswordField", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Is Password Field" @@ -361,7 +361,7 @@ ] }, { - "key": "GetTextCursorColor", + "base": "GetTextCursorColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text Cursor Color" @@ -384,7 +384,7 @@ ] }, { - "key": "SetTextEntity", + "base": "SetTextEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text Entity" @@ -408,7 +408,7 @@ ] }, { - "key": "SetTextSelectionColor", + "base": "SetTextSelectionColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text Selection Color" @@ -432,7 +432,7 @@ ] }, { - "key": "SetTextCursorColor", + "base": "SetTextCursorColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text Cursor Color" @@ -456,7 +456,7 @@ ] }, { - "key": "SetCursorBlinkInterval", + "base": "SetCursorBlinkInterval", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Cursor Blink Interval" @@ -480,7 +480,7 @@ ] }, { - "key": "GetTextEntity", + "base": "GetTextEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text Entity" @@ -504,7 +504,7 @@ ] }, { - "key": "SetPlaceHolderTextEntity", + "base": "SetPlaceHolderTextEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Placeholder Text Entity" @@ -528,7 +528,7 @@ ] }, { - "key": "GetReplacementCharacter", + "base": "GetReplacementCharacter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Replacement Character" @@ -551,7 +551,7 @@ ] }, { - "key": "GetIsClipboardEnabled", + "base": "GetIsClipboardEnabled", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetIsClipboardEnabled" @@ -573,7 +573,7 @@ ] }, { - "key": "GetTextSelectionColor", + "base": "GetTextSelectionColor", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text Selection Color" @@ -596,7 +596,7 @@ ] }, { - "key": "SetReplacementCharacter", + "base": "SetReplacementCharacter", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Replacement Character" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTooltipBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTooltipBus.names index 65fa7736e2..f782d63f36 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTooltipBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTooltipBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTooltipBus", + "base": "UiTooltipBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetText", + "base": "GetText", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text" @@ -33,7 +33,7 @@ ] }, { - "key": "SetText", + "base": "SetText", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTooltipDisplayBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTooltipDisplayBus.names index ddf95a0888..7ec2d0a089 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTooltipDisplayBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTooltipDisplayBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTooltipDisplayBus", + "base": "UiTooltipDisplayBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetAutoSize", + "base": "GetAutoSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Auto Size" @@ -33,7 +33,7 @@ ] }, { - "key": "GetTextEntity", + "base": "GetTextEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Text Entity" @@ -57,7 +57,7 @@ ] }, { - "key": "GetDelayTime", + "base": "GetDelayTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Delay Time" @@ -80,7 +80,7 @@ ] }, { - "key": "SetDelayTime", + "base": "SetDelayTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Delay Time" @@ -104,7 +104,7 @@ ] }, { - "key": "SetDisplayTime", + "base": "SetDisplayTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Display Time" @@ -128,7 +128,7 @@ ] }, { - "key": "SetOffset", + "base": "SetOffset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Offset" @@ -152,7 +152,7 @@ ] }, { - "key": "GetOffset", + "base": "GetOffset", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Offset" @@ -175,7 +175,7 @@ ] }, { - "key": "GetAutoPositionMode", + "base": "GetAutoPositionMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Auto Position Mode" @@ -198,7 +198,7 @@ ] }, { - "key": "SetAutoPosition", + "base": "SetAutoPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Auto Position" @@ -222,7 +222,7 @@ ] }, { - "key": "SetAutoSize", + "base": "SetAutoSize", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Auto Size" @@ -246,7 +246,7 @@ ] }, { - "key": "GetAutoPosition", + "base": "GetAutoPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Auto Position" @@ -269,7 +269,7 @@ ] }, { - "key": "SetTextEntity", + "base": "SetTextEntity", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Text Entity" @@ -293,7 +293,7 @@ ] }, { - "key": "GetDisplayTime", + "base": "GetDisplayTime", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Display Time" @@ -316,7 +316,7 @@ ] }, { - "key": "GetTriggerMode", + "base": "GetTriggerMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke GetTriggerMode" @@ -338,7 +338,7 @@ ] }, { - "key": "SetTriggerMode", + "base": "SetTriggerMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke SetTriggerMode" @@ -360,7 +360,7 @@ ] }, { - "key": "SetAutoPositionMode", + "base": "SetAutoPositionMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Auto Position Mode" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTransform2dBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTransform2dBus.names index 112788b514..3c7570072b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTransform2dBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTransform2dBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "UiTransform2dBus", + "base": "UiTransform2dBus", "context": "EBusSender", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetLocalHeight", + "base": "GetLocalHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Height" @@ -33,7 +33,7 @@ ] }, { - "key": "SetLocalHeight", + "base": "SetLocalHeight", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Height" @@ -57,7 +57,7 @@ ] }, { - "key": "GetLocalWidth", + "base": "GetLocalWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Width" @@ -80,7 +80,7 @@ ] }, { - "key": "SetPivotAndAdjustOffsets", + "base": "SetPivotAndAdjustOffsets", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Pivot And Adjust Offsets" @@ -104,7 +104,7 @@ ] }, { - "key": "SetLocalWidth", + "base": "SetLocalWidth", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Width" @@ -128,7 +128,7 @@ ] }, { - "key": "GetOffsets", + "base": "GetOffsets", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Offsets" @@ -151,7 +151,7 @@ ] }, { - "key": "SetAnchors", + "base": "SetAnchors", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Anchors" @@ -189,7 +189,7 @@ ] }, { - "key": "GetAnchors", + "base": "GetAnchors", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Anchors" @@ -212,7 +212,7 @@ ] }, { - "key": "SetOffsets", + "base": "SetOffsets", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Offsets" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTransformBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTransformBus.names index 6628f2c84c..92a8ea1989 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTransformBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/UiTransformBus.names @@ -1,27 +1,25 @@ { "entries": [ { - "key": "UiTransformBus", + "base": "UiTransformBus", "context": "EBusSender", "variant": "", "details": { - "name": "UiTransformBus", - "category": "UI" + "name": "Ui Transform Bus" }, "methods": [ { - "key": "GetPivotY", + "base": "GetPivotY", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get Pivot Y" + "tooltip": "When signaled, this will invoke Get PivotY" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get Pivot Y is invoked" + "tooltip": "Signaled after Get PivotY is invoked" }, "details": { - "name": "Get Pivot Y", - "tooltip": "Gets the Y value of the pivot point" + "name": "Get PivotY" }, "results": [ { @@ -33,18 +31,17 @@ ] }, { - "key": "GetScaleX", + "base": "GetScaleX", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get Scale X" + "tooltip": "When signaled, this will invoke Get ScaleX" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get Scale X is invoked" + "tooltip": "Signaled after Get ScaleX is invoked" }, "details": { - "name": "Get Scale X", - "tooltip": "Gets the X value of the scale" + "name": "Get ScaleX" }, "results": [ { @@ -56,7 +53,7 @@ ] }, { - "key": "GetScale", + "base": "GetScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Scale" @@ -66,92 +63,85 @@ "tooltip": "Signaled after Get Scale is invoked" }, "details": { - "name": "Get Scale", - "tooltip": "Gets the scale" + "name": "Get Scale" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Vector 2" } } ] }, { - "key": "SetLocalPositionX", + "base": "SetLocalPositionX", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set Local Position X" + "tooltip": "When signaled, this will invoke Set Local PositionX" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set Local Position X is invoked" + "tooltip": "Signaled after Set Local PositionX is invoked" }, "details": { - "name": "Set Local Position X", - "tooltip": "Sets the X position of the element relative to the center of the element's anchors" + "name": "Set Local PositionX" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "X Local Position", - "tooltip": "The X position of the element relative to the center of the element's anchors" + "name": "float" } } ] }, { - "key": "SetScaleX", + "base": "SetScaleX", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set Scale X" + "tooltip": "When signaled, this will invoke Set ScaleX" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set Scale X is invoked" + "tooltip": "Signaled after Set ScaleX is invoked" }, "details": { - "name": "Set Scale X", - "tooltip": "Sets the X value of the scale" + "name": "Set ScaleX" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "X Scale", - "tooltip": "The X value of the scale" + "name": "float" } } ] }, { - "key": "SetZRotation", + "base": "SetZRotation", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set Z Rotation" + "tooltip": "When signaled, this will invoke SetZ Rotation" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set Z Rotation is invoked" + "tooltip": "Signaled after SetZ Rotation is invoked" }, "details": { - "name": "Set Z Rotation", - "tooltip": "Sets the rotation about the z-axis" + "name": "SetZ Rotation" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Z Rotation", - "tooltip": "The rotation about the z-axis" + "name": "float" } } ] }, { - "key": "GetScaleToDeviceMode", + "base": "GetScaleToDeviceMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Scale To Device Mode" @@ -161,8 +151,7 @@ "tooltip": "Signaled after Get Scale To Device Mode is invoked" }, "details": { - "name": "Get Scale To Device Mode", - "tooltip": "Returns how the element and all its children are scaled to allow for the difference between the authored canvas size and the actual viewport size" + "name": "Get Scale To Device Mode" }, "results": [ { @@ -174,7 +163,7 @@ ] }, { - "key": "SetPivot", + "base": "SetPivot", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Pivot" @@ -184,32 +173,29 @@ "tooltip": "Signaled after Set Pivot is invoked" }, "details": { - "name": "Set Pivot", - "tooltip": "Sets the pivot point" + "name": "Set Pivot" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Pivot", - "tooltip": "The pivot point" + "name": "Vector 2" } } ] }, { - "key": "GetScaleY", + "base": "GetScaleY", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get Scale Y" + "tooltip": "When signaled, this will invoke Get ScaleY" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get Scale Y is invoked" + "tooltip": "Signaled after Get ScaleY is invoked" }, "details": { - "name": "Get Scale Y", - "tooltip": "Gets the Y value of the scale" + "name": "Get ScaleY" }, "results": [ { @@ -221,7 +207,7 @@ ] }, { - "key": "MoveLocalPositionBy", + "base": "MoveLocalPositionBy", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Move Local Position By" @@ -231,45 +217,41 @@ "tooltip": "Signaled after Move Local Position By is invoked" }, "details": { - "name": "Move Local Position By", - "tooltip": "Moves the element relative to the center of the element's anchors" + "name": "Move Local Position By" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Offset", - "tooltip": "The amount to move the local position" + "name": "Vector 2" } } ] }, { - "key": "SetLocalPositionY", + "base": "SetLocalPositionY", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set Local Position Y" + "tooltip": "When signaled, this will invoke Set Local PositionY" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set Local Position Y is invoked" + "tooltip": "Signaled after Set Local PositionY is invoked" }, "details": { - "name": "Set Local Position Y", - "tooltip": "Sets the Y position of the element relative to the center of the element's anchors" + "name": "Set Local PositionY" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Y Local Position", - "tooltip": "The Y position of the element relative to the center of the element's anchors" + "name": "float" } } ] }, { - "key": "SetViewportPosition", + "base": "SetViewportPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Viewport Position" @@ -279,21 +261,19 @@ "tooltip": "Signaled after Set Viewport Position is invoked" }, "details": { - "name": "Set Viewport Position", - "tooltip": "Sets the position of the element in viewport space" + "name": "Set Viewport Position" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Position", - "tooltip": "The position of the element in viewport space" + "name": "Vector 2" } } ] }, { - "key": "SetScaleToDeviceMode", + "base": "SetScaleToDeviceMode", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Scale To Device Mode" @@ -303,32 +283,29 @@ "tooltip": "Signaled after Set Scale To Device Mode is invoked" }, "details": { - "name": "Set Scale To Device Mode", - "tooltip": "Sets how the element and all its children should be scaled to allow for the difference between the authored canvas size and the actual viewport size" + "name": "Set Scale To Device Mode" }, "params": [ { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "Scale to Device Mode", - "tooltip": "Indicates how the element and all its children are scaled to allow for the difference between the authored canvas size and the actual viewport size (0=None, 1=Scale to fit (uniformly), 2=Scale to fill (uniformly), 3=Scale to fit X (uniformly), 4=Scale to fit Y (uniformly), 5=Stretch to fill (non-uniformly), 6=Stretch to fit X (non-uniformly), 7=Stretch to fit Y (non-uniformly))" + "name": "int" } } ] }, { - "key": "GetLocalPositionX", + "base": "GetLocalPositionX", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get Local Position X" + "tooltip": "When signaled, this will invoke Get Local PositionX" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get Local Position X is invoked" + "tooltip": "Signaled after Get Local PositionX is invoked" }, "details": { - "name": "Get Local Position X", - "tooltip": "Gets the X position of the element relative to the center of the element's anchors" + "name": "Get Local PositionX" }, "results": [ { @@ -340,7 +317,7 @@ ] }, { - "key": "MoveCanvasPositionBy", + "base": "MoveCanvasPositionBy", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Move Canvas Position By" @@ -350,45 +327,41 @@ "tooltip": "Signaled after Move Canvas Position By is invoked" }, "details": { - "name": "Move Canvas Position By", - "tooltip": "Moves the element in canvas space" + "name": "Move Canvas Position By" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Offset", - "tooltip": "The amount to move the canvas position" + "name": "Vector 2" } } ] }, { - "key": "SetPivotX", + "base": "SetPivotX", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set Pivot X" + "tooltip": "When signaled, this will invoke Set PivotX" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set Pivot X is invoked" + "tooltip": "Signaled after Set PivotX is invoked" }, "details": { - "name": "Set Pivot X", - "tooltip": "Sets the X value of the pivot point" + "name": "Set PivotX" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "X Pivot", - "tooltip": "The X value of the pivot point" + "name": "float" } } ] }, { - "key": "MoveViewportPositionBy", + "base": "MoveViewportPositionBy", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Move Viewport Position By" @@ -398,45 +371,41 @@ "tooltip": "Signaled after Move Viewport Position By is invoked" }, "details": { - "name": "Move Viewport Position By", - "tooltip": "Moves the element in viewport space" + "name": "Move Viewport Position By" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Offset", - "tooltip": "The amount to move the viewport position" + "name": "Vector 2" } } ] }, { - "key": "SetPivotY", + "base": "SetPivotY", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set Pivot Y" + "tooltip": "When signaled, this will invoke Set PivotY" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set Pivot Y is invoked" + "tooltip": "Signaled after Set PivotY is invoked" }, "details": { - "name": "Set Pivot Y", - "tooltip": "Sets the Y value of the pivot point" + "name": "Set PivotY" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Y Pivot", - "tooltip": "The Y value of the pivot point" + "name": "float" } } ] }, { - "key": "GetViewportPosition", + "base": "GetViewportPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Viewport Position" @@ -446,20 +415,19 @@ "tooltip": "Signaled after Get Viewport Position is invoked" }, "details": { - "name": "Get Viewport Position", - "tooltip": "Gets the position of the element in viewport space" + "name": "Get Viewport Position" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Vector 2" } } ] }, { - "key": "SetScale", + "base": "SetScale", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Scale" @@ -469,21 +437,19 @@ "tooltip": "Signaled after Set Scale is invoked" }, "details": { - "name": "Set Scale", - "tooltip": "Sets the scale" + "name": "Set Scale" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Scale", - "tooltip": "The scale" + "name": "Vector 2" } } ] }, { - "key": "SetLocalPosition", + "base": "SetLocalPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Local Position" @@ -493,21 +459,19 @@ "tooltip": "Signaled after Set Local Position is invoked" }, "details": { - "name": "Set Local Position", - "tooltip": "Sets the position of the element relative to the center of the element's anchors" + "name": "Set Local Position" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Local Position", - "tooltip": "The position of the element relative to the center of the element's anchors" + "name": "Vector 2" } } ] }, { - "key": "GetCanvasPosition", + "base": "GetCanvasPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Canvas Position" @@ -517,31 +481,29 @@ "tooltip": "Signaled after Get Canvas Position is invoked" }, "details": { - "name": "Get Canvas Position", - "tooltip": "Gets the position of the element in canvas space" + "name": "Get Canvas Position" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Vector 2" } } ] }, { - "key": "GetPivotX", + "base": "GetPivotX", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get Pivot X" + "tooltip": "When signaled, this will invoke Get PivotX" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get Pivot X is invoked" + "tooltip": "Signaled after Get PivotX is invoked" }, "details": { - "name": "Get Pivot X", - "tooltip": "Gets the X value of the pivot point" + "name": "Get PivotX" }, "results": [ { @@ -553,18 +515,17 @@ ] }, { - "key": "GetZRotation", + "base": "GetZRotation", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get Z Rotation" + "tooltip": "When signaled, this will invoke GetZ Rotation" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get Z Rotation is invoked" + "tooltip": "Signaled after GetZ Rotation is invoked" }, "details": { - "name": "Get Z Rotation", - "tooltip": "Gets the rotation about the z-axis" + "name": "GetZ Rotation" }, "results": [ { @@ -576,7 +537,7 @@ ] }, { - "key": "GetLocalPosition", + "base": "GetLocalPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Local Position" @@ -586,44 +547,41 @@ "tooltip": "Signaled after Get Local Position is invoked" }, "details": { - "name": "Get Local Position", - "tooltip": "Gets the position of the element relative to the center of the element's anchors" + "name": "Get Local Position" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Vector 2" } } ] }, { - "key": "SetScaleY", + "base": "SetScaleY", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set Scale Y" + "tooltip": "When signaled, this will invoke Set ScaleY" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set Scale Y is invoked" + "tooltip": "Signaled after Set ScaleY is invoked" }, "details": { - "name": "Set Scale Y", - "tooltip": "Sets the Y value of the scale" + "name": "Set ScaleY" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Y Scale", - "tooltip": "The Y value of the scale" + "name": "float" } } ] }, { - "key": "GetPivot", + "base": "GetPivot", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Pivot" @@ -633,20 +591,19 @@ "tooltip": "Signaled after Get Pivot is invoked" }, "details": { - "name": "Get Pivot", - "tooltip": "Gets the pivot point" + "name": "Get Pivot" }, "results": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Vector2" + "name": "Vector 2" } } ] }, { - "key": "SetCanvasPosition", + "base": "SetCanvasPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Set Canvas Position" @@ -656,32 +613,29 @@ "tooltip": "Signaled after Set Canvas Position is invoked" }, "details": { - "name": "Set Canvas Position", - "tooltip": "Sets the position of the element in canvas space" + "name": "Set Canvas Position" }, "params": [ { "typeid": "{3D80F623-C85C-4741-90D0-E4E66164E6BF}", "details": { - "name": "Position", - "tooltip": "The position of the element in canvas space" + "name": "Vector 2" } } ] }, { - "key": "GetLocalPositionY", + "base": "GetLocalPositionY", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get Local Position Y" + "tooltip": "When signaled, this will invoke Get Local PositionY" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get Local Position Y is invoked" + "tooltip": "Signaled after Get Local PositionY is invoked" }, "details": { - "name": "Get Local Position Y", - "tooltip": "Gets the Y position of the element relative to the center of the element's anchors" + "name": "Get Local PositionY" }, "results": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ViewportRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ViewportRequestBus.names index 56ea2c0882..bd483d39de 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ViewportRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ViewportRequestBus.names @@ -1,25 +1,26 @@ { "entries": [ { - "key": "ViewportRequestBus", + "base": "ViewportRequestBus", "context": "EBusSender", "variant": "", "details": { - "name": "ViewportRequestBus" + "name": "Viewport", + "category": "Rendering" }, "methods": [ { - "key": "SetCameraTransform", + "base": "SetCameraTransform", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetCameraTransform" + "tooltip": "When signaled, this will invoke Set Camera Transform" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetCameraTransform is invoked" + "tooltip": "Signaled after Set Camera Transform is invoked" }, "details": { - "name": "SetCameraTransform" + "name": "Set Camera Transform" }, "params": [ { @@ -31,105 +32,105 @@ ] }, { - "key": "GetCameraProjectionMatrix", + "base": "GetCameraProjectionMatrix", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCameraProjectionMatrix" + "tooltip": "When signaled, this will invoke Get Camera Projection Matrix" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCameraProjectionMatrix is invoked" + "tooltip": "Signaled after Get Camera Projection Matrix is invoked" }, "details": { - "name": "GetCameraProjectionMatrix" + "name": "Get Camera Projection Matrix" }, "results": [ { "typeid": "{157193C7-B673-4A2B-8B43-5681DCC3DEC3}", "details": { - "name": "Matrix4x4" + "name": "Matrix 4x 4" } } ] }, { - "key": "SetCameraViewMatrix", + "base": "SetCameraViewMatrix", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetCameraViewMatrix" + "tooltip": "When signaled, this will invoke Set Camera View Matrix" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetCameraViewMatrix is invoked" + "tooltip": "Signaled after Set Camera View Matrix is invoked" }, "details": { - "name": "SetCameraViewMatrix" + "name": "Set Camera View Matrix" }, "params": [ { "typeid": "{157193C7-B673-4A2B-8B43-5681DCC3DEC3}", "details": { - "name": "Matrix4x4" + "name": "Matrix 4x 4" } } ] }, { - "key": "GetCameraViewMatrix", + "base": "GetCameraViewMatrix", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCameraViewMatrix" + "tooltip": "When signaled, this will invoke Get Camera View Matrix" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCameraViewMatrix is invoked" + "tooltip": "Signaled after Get Camera View Matrix is invoked" }, "details": { - "name": "GetCameraViewMatrix" + "name": "Get Camera View Matrix" }, "results": [ { "typeid": "{157193C7-B673-4A2B-8B43-5681DCC3DEC3}", "details": { - "name": "Matrix4x4" + "name": "Matrix 4x 4" } } ] }, { - "key": "SetCameraProjectionMatrix", + "base": "SetCameraProjectionMatrix", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetCameraProjectionMatrix" + "tooltip": "When signaled, this will invoke Set Camera Projection Matrix" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetCameraProjectionMatrix is invoked" + "tooltip": "Signaled after Set Camera Projection Matrix is invoked" }, "details": { - "name": "SetCameraProjectionMatrix" + "name": "Set Camera Projection Matrix" }, "params": [ { "typeid": "{157193C7-B673-4A2B-8B43-5681DCC3DEC3}", "details": { - "name": "Matrix4x4" + "name": "Matrix 4x 4" } } ] }, { - "key": "GetCameraTransform", + "base": "GetCameraTransform", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetCameraTransform" + "tooltip": "When signaled, this will invoke Get Camera Transform" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetCameraTransform is invoked" + "tooltip": "Signaled after Get Camera Transform is invoked" }, "details": { - "name": "GetCameraTransform" + "name": "Get Camera Transform" }, "results": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/WindRequestsBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/WindRequestsBus.names index 3102c94ffb..5913af7499 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/WindRequestsBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/WindRequestsBus.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "WindRequestsBus", + "base": "WindRequestsBus", "context": "EBusSender", "variant": "", "details": { @@ -9,7 +9,7 @@ }, "methods": [ { - "key": "GetGlobalWind", + "base": "GetGlobalWind", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Global Wind" @@ -31,7 +31,7 @@ ] }, { - "key": "GetWindAtPosition", + "base": "GetWindAtPosition", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Wind At Position" @@ -61,7 +61,7 @@ ] }, { - "key": "GetWindInsideAabb", + "base": "GetWindInsideAabb", "entry": { "name": "In", "tooltip": "When signaled, this will invoke Get Wind Inside AABB" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateBoxCastRequest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateBoxCastRequest.names index 6dc3d8f8d4..72b911f0cd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateBoxCastRequest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateBoxCastRequest.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CreateBoxCastRequest", + "base": "CreateBoxCastRequest", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateBoxCastRequest", + "base": "CreateBoxCastRequest", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateBoxOverlapRequest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateBoxOverlapRequest.names index 35928f8446..984c7008ab 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateBoxOverlapRequest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateBoxOverlapRequest.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CreateBoxOverlapRequest", + "base": "CreateBoxOverlapRequest", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateBoxOverlapRequest", + "base": "CreateBoxOverlapRequest", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateCapsuleCastRequest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateCapsuleCastRequest.names index ef8e84f3ea..8ae6f324e6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateCapsuleCastRequest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateCapsuleCastRequest.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CreateCapsuleCastRequest", + "base": "CreateCapsuleCastRequest", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateCapsuleCastRequest", + "base": "CreateCapsuleCastRequest", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateCapsuleOverlapRequest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateCapsuleOverlapRequest.names index d78d1c9063..d9b5f8d555 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateCapsuleOverlapRequest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateCapsuleOverlapRequest.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CreateCapsuleOverlapRequest", + "base": "CreateCapsuleOverlapRequest", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateCapsuleOverlapRequest", + "base": "CreateCapsuleOverlapRequest", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateSphereCastRequest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateSphereCastRequest.names index 884dbf070e..c8dbbf9509 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateSphereCastRequest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateSphereCastRequest.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CreateSphereCastRequest", + "base": "CreateSphereCastRequest", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateSphereCastRequest", + "base": "CreateSphereCastRequest", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateSphereOverlapRequest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateSphereOverlapRequest.names index eaf91c144a..3656d75837 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateSphereOverlapRequest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/CreateSphereOverlapRequest.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "CreateSphereOverlapRequest", + "base": "CreateSphereOverlapRequest", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "CreateSphereOverlapRequest", + "base": "CreateSphereOverlapRequest", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/GetPhysicsSystem.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/GetPhysicsSystem.names index d2b64d5071..ddaf1afb71 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/GetPhysicsSystem.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/GetPhysicsSystem.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "GetPhysicsSystem", + "base": "GetPhysicsSystem", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "GetPhysicsSystem", + "base": "GetPhysicsSystem", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/SaveShaderVariantListSourceData.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/SaveShaderVariantListSourceData.names index 1301717ba3..c78a97bab8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/SaveShaderVariantListSourceData.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/SaveShaderVariantListSourceData.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SaveShaderVariantListSourceData", + "base": "SaveShaderVariantListSourceData", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SaveShaderVariantListSourceData", + "base": "SaveShaderVariantListSourceData", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/SettingsRegistry.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/SettingsRegistry.names index 373047e735..8d55c7c22c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/SettingsRegistry.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/SettingsRegistry.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "SettingsRegistry", + "base": "SettingsRegistry", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "SettingsRegistry", + "base": "SettingsRegistry", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/Terminate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/Terminate.names index d36c4cf37f..177cc5510a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/Terminate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/Terminate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "Terminate", + "base": "Terminate", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "Terminate", + "base": "Terminate", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_layer_node.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_layer_node.names index bf4e5fcbe9..b6732eb7bf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_layer_node.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_layer_node.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "add_layer_node", + "base": "add_layer_node", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "add_layer_node", + "base": "add_layer_node", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_node.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_node.names index 8f52238b58..0c7a598968 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_node.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_node.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "add_node", + "base": "add_node", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "add_node", + "base": "add_node", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_selected_entities.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_selected_entities.names index 926e5adef6..fa67e69277 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_selected_entities.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_selected_entities.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "add_selected_entities", + "base": "add_selected_entities", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "add_selected_entities", + "base": "add_selected_entities", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_track.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_track.names index c048cbf6fa..312eafd1d4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_track.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/add_track.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "add_track", + "base": "add_track", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "add_track", + "base": "add_track", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/attach_debugger.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/attach_debugger.names index 398b3ec25a..8432caefe0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/attach_debugger.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/attach_debugger.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "attach_debugger", + "base": "attach_debugger", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "attach_debugger", + "base": "attach_debugger", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/bind_viewport.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/bind_viewport.names index a09ec96fd9..ad2bbcd5f9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/bind_viewport.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/bind_viewport.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "bind_viewport", + "base": "bind_viewport", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "bind_viewport", + "base": "bind_viewport", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/clear_selection.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/clear_selection.names index 8c8d8318c5..2105e431b1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/clear_selection.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/clear_selection.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "clear_selection", + "base": "clear_selection", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "clear_selection", + "base": "clear_selection", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/close_pane.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/close_pane.names index 7fc51967b2..cc31fc5bce 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/close_pane.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/close_pane.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "close_pane", + "base": "close_pane", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "close_pane", + "base": "close_pane", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/combo_box.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/combo_box.names index 7ce138a740..09d4a594f9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/combo_box.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/combo_box.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "combo_box", + "base": "combo_box", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "combo_box", + "base": "combo_box", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/crash.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/crash.names index 9708005711..c45360fa27 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/crash.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/crash.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "crash", + "base": "crash", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "crash", + "base": "crash", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/create_level.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/create_level.names index 4e75ca5197..f893c6e77d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/create_level.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/create_level.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "create_level", + "base": "create_level", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "create_level", + "base": "create_level", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/create_level_no_prompt.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/create_level_no_prompt.names index 1935a970d1..82185c453f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/create_level_no_prompt.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/create_level_no_prompt.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "create_level_no_prompt", + "base": "create_level_no_prompt", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "create_level_no_prompt", + "base": "create_level_no_prompt", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_node.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_node.names index 7c621e25e9..689a66a1c6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_node.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_node.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "delete_node", + "base": "delete_node", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "delete_node", + "base": "delete_node", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_object.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_object.names index b134e71fec..13c8aae783 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_object.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_object.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "delete_object", + "base": "delete_object", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "delete_object", + "base": "delete_object", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_selected.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_selected.names index 1da4b2cb26..bc09f6f0af 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_selected.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_selected.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "delete_selected", + "base": "delete_selected", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "delete_selected", + "base": "delete_selected", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_sequence.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_sequence.names index bdc0052f2a..64ec10e0ac 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_sequence.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_sequence.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "delete_sequence", + "base": "delete_sequence", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "delete_sequence", + "base": "delete_sequence", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_track.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_track.names index 135c53ad30..ca1f49b29c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_track.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/delete_track.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "delete_track", + "base": "delete_track", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "delete_track", + "base": "delete_track", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/draw_label.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/draw_label.names index ae1d5befe5..cff6a5c812 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/draw_label.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/draw_label.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "draw_label", + "base": "draw_label", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "draw_label", + "base": "draw_label", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/dump_exposed_classes.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/dump_exposed_classes.names index 5716162f4f..d7b1bf9d23 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/dump_exposed_classes.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/dump_exposed_classes.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "dump_exposed_classes", + "base": "dump_exposed_classes", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "dump_exposed_classes", + "base": "dump_exposed_classes", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/edit_box.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/edit_box.names index 0a74f98f8d..59b1eea8db 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/edit_box.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/edit_box.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "edit_box", + "base": "edit_box", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "edit_box", + "base": "edit_box", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/edit_box_check_data_type.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/edit_box_check_data_type.names index 52ff4b7b28..582787dc7b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/edit_box_check_data_type.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/edit_box_check_data_type.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "edit_box_check_data_type", + "base": "edit_box_check_data_type", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "edit_box_check_data_type", + "base": "edit_box_check_data_type", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enable_for_all.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enable_for_all.names index 09e4f5c426..c32a111c5d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enable_for_all.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enable_for_all.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "enable_for_all", + "base": "enable_for_all", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "enable_for_all", + "base": "enable_for_all", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enter_game_mode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enter_game_mode.names index 52e02faa81..84e713519b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enter_game_mode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enter_game_mode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "enter_game_mode", + "base": "enter_game_mode", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "enter_game_mode", + "base": "enter_game_mode", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enter_simulation_mode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enter_simulation_mode.names index b5b97de500..67a399c5b2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enter_simulation_mode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/enter_simulation_mode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "enter_simulation_mode", + "base": "enter_simulation_mode", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "enter_simulation_mode", + "base": "enter_simulation_mode", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/execute_command.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/execute_command.names index 3558aa7cdb..7410e5a7b6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/execute_command.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/execute_command.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "execute_command", + "base": "execute_command", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "execute_command", + "base": "execute_command", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit.names index b494190ca9..335edab62c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "exit", + "base": "exit", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "exit", + "base": "exit", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_game_mode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_game_mode.names index 61ece2079d..e202395b15 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_game_mode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_game_mode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "exit_game_mode", + "base": "exit_game_mode", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "exit_game_mode", + "base": "exit_game_mode", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_no_prompt.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_no_prompt.names index c869bb6d06..240fac0896 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_no_prompt.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_no_prompt.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "exit_no_prompt", + "base": "exit_no_prompt", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "exit_no_prompt", + "base": "exit_no_prompt", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_simulation_mode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_simulation_mode.names index e8b6419c7e..1fbf1ae15a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_simulation_mode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/exit_simulation_mode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "exit_simulation_mode", + "base": "exit_simulation_mode", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "exit_simulation_mode", + "base": "exit_simulation_mode", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/export_to_engine.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/export_to_engine.names index 8ada50e7a7..1201f008b6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/export_to_engine.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/export_to_engine.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "export_to_engine", + "base": "export_to_engine", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "export_to_engine", + "base": "export_to_engine", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/find_editor_entity.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/find_editor_entity.names index c9ec658126..f4a6511cb0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/find_editor_entity.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/find_editor_entity.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "find_editor_entity", + "base": "find_editor_entity", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "find_editor_entity", + "base": "find_editor_entity", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/find_game_entity.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/find_game_entity.names index bf1fe91241..49edae2728 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/find_game_entity.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/find_game_entity.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "find_game_entity", + "base": "find_game_entity", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "find_game_entity", + "base": "find_game_entity", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/freeze_object.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/freeze_object.names index c413c4a4c1..86902f625d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/freeze_object.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/freeze_object.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "freeze_object", + "base": "freeze_object", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "freeze_object", + "base": "freeze_object", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_active_viewport.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_active_viewport.names index 23d8096ac1..d8df792445 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_active_viewport.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_active_viewport.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_active_viewport", + "base": "get_active_viewport", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_active_viewport", + "base": "get_active_viewport", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_all_objects.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_all_objects.names index b7686d1760..d39e48c0d9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_all_objects.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_all_objects.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_all_objects", + "base": "get_all_objects", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_all_objects", + "base": "get_all_objects", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_axis_constraint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_axis_constraint.names index d9073b1058..8b7e6c5217 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_axis_constraint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_axis_constraint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_axis_constraint", + "base": "get_axis_constraint", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_axis_constraint", + "base": "get_axis_constraint", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_config_platform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_config_platform.names index 4b0e8ac35b..c330306110 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_config_platform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_config_platform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_config_platform", + "base": "get_config_platform", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_config_platform", + "base": "get_config_platform", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_config_spec.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_config_spec.names index 9dc53f4507..e20edd59c6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_config_spec.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_config_spec.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_config_spec", + "base": "get_config_spec", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_config_spec", + "base": "get_config_spec", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_level_name.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_level_name.names index 365cba6b9e..8c8833b372 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_level_name.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_level_name.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_current_level_name", + "base": "get_current_level_name", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_current_level_name", + "base": "get_current_level_name", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_level_path.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_level_path.names index 82b407a8fe..846b236e48 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_level_path.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_level_path.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_current_level_path", + "base": "get_current_level_path", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_current_level_path", + "base": "get_current_level_path", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_view_position.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_view_position.names index a5e07d14d3..c5509b1cf9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_view_position.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_view_position.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_current_view_position", + "base": "get_current_view_position", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_current_view_position", + "base": "get_current_view_position", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_view_rotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_view_rotation.names index 6be7bff047..f2de184318 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_view_rotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_current_view_rotation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_current_view_rotation", + "base": "get_current_view_rotation", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_current_view_rotation", + "base": "get_current_view_rotation", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_cvar.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_cvar.names index 22d8fa62b4..e3acfc818b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_cvar.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_cvar.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_cvar", + "base": "get_cvar", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_cvar", + "base": "get_cvar", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_file_alias.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_file_alias.names index 9a1d048865..f52c2db932 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_file_alias.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_file_alias.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_file_alias", + "base": "get_file_alias", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_file_alias", + "base": "get_file_alias", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_game_folder.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_game_folder.names index b2280925ff..67e6a1cebe 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_game_folder.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_game_folder.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_game_folder", + "base": "get_game_folder", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_game_folder", + "base": "get_game_folder", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_interpolated_value.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_interpolated_value.names index 3f5469407e..76229b6777 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_interpolated_value.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_interpolated_value.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_interpolated_value", + "base": "get_interpolated_value", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_interpolated_value", + "base": "get_interpolated_value", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_key_value.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_key_value.names index 69a7dcd7a4..25ff2b7731 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_key_value.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_key_value.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_key_value", + "base": "get_key_value", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_key_value", + "base": "get_key_value", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_misc_editor_settings.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_misc_editor_settings.names index 7759957362..613c0322cb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_misc_editor_settings.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_misc_editor_settings.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_misc_editor_settings", + "base": "get_misc_editor_settings", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_misc_editor_settings", + "base": "get_misc_editor_settings", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_names_of_selected_objects.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_names_of_selected_objects.names index 6343079ee3..fd53f4eabb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_names_of_selected_objects.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_names_of_selected_objects.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_names_of_selected_objects", + "base": "get_names_of_selected_objects", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_names_of_selected_objects", + "base": "get_names_of_selected_objects", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_node_name.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_node_name.names index abc8bc12b3..2ea9de8513 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_node_name.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_node_name.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_node_name", + "base": "get_node_name", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_node_name", + "base": "get_node_name", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_nodes.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_nodes.names index fea8d6d51e..87a6db5f5a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_nodes.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_nodes.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_num_nodes", + "base": "get_num_nodes", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_num_nodes", + "base": "get_num_nodes", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_selected.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_selected.names index cd260f6dc8..3761118834 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_selected.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_selected.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_num_selected", + "base": "get_num_selected", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_num_selected", + "base": "get_num_selected", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_sequences.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_sequences.names index 7101578f9d..74ba982883 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_sequences.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_sequences.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_num_sequences", + "base": "get_num_sequences", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_num_sequences", + "base": "get_num_sequences", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_track_keys.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_track_keys.names index 06963345ee..cbaf89bc8c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_track_keys.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_num_track_keys.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_num_track_keys", + "base": "get_num_track_keys", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_num_track_keys", + "base": "get_num_track_keys", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_pak_from_file.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_pak_from_file.names index 828f298ed9..ec00c17b40 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_pak_from_file.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_pak_from_file.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_pak_from_file", + "base": "get_pak_from_file", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_pak_from_file", + "base": "get_pak_from_file", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_pane_class_names.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_pane_class_names.names index d4d90062e7..52b66ebbb0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_pane_class_names.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_pane_class_names.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_pane_class_names", + "base": "get_pane_class_names", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_pane_class_names", + "base": "get_pane_class_names", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_position.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_position.names index 9256be10cd..31de8b96dc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_position.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_position.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_position", + "base": "get_position", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_position", + "base": "get_position", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_rotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_rotation.names index 9a0fc2c866..4d5c644b46 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_rotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_rotation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_rotation", + "base": "get_rotation", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_rotation", + "base": "get_rotation", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_scale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_scale.names index bca8c0935a..c444d34332 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_scale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_scale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_scale", + "base": "get_scale", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_scale", + "base": "get_scale", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_selection_aabb.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_selection_aabb.names index 8563f61cc9..e0835c4823 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_selection_aabb.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_selection_aabb.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_selection_aabb", + "base": "get_selection_aabb", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_selection_aabb", + "base": "get_selection_aabb", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_selection_center.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_selection_center.names index 9bd01010e4..445ef2d2ac 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_selection_center.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_selection_center.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_selection_center", + "base": "get_selection_center", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_selection_center", + "base": "get_selection_center", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_sequence_name.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_sequence_name.names index 3dbe9bc854..83482c09d2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_sequence_name.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_sequence_name.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_sequence_name", + "base": "get_sequence_name", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_sequence_name", + "base": "get_sequence_name", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_sequence_time_range.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_sequence_time_range.names index ae8a229a75..2231d6c807 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_sequence_time_range.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_sequence_time_range.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_sequence_time_range", + "base": "get_sequence_time_range", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_sequence_time_range", + "base": "get_sequence_time_range", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_view_pane_layout.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_view_pane_layout.names index a149b94dd8..aa014dcab8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_view_pane_layout.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_view_pane_layout.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_view_pane_layout", + "base": "get_view_pane_layout", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_view_pane_layout", + "base": "get_view_pane_layout", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_count.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_count.names index 7b616139ee..462816b556 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_count.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_count.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_viewport_count", + "base": "get_viewport_count", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_viewport_count", + "base": "get_viewport_count", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_expansion_policy.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_expansion_policy.names index 23d2dae3d3..04ee539630 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_expansion_policy.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_expansion_policy.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_viewport_expansion_policy", + "base": "get_viewport_expansion_policy", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_viewport_expansion_policy", + "base": "get_viewport_expansion_policy", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_size.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_size.names index 33cc93441d..254dce0763 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_size.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/get_viewport_size.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "get_viewport_size", + "base": "get_viewport_size", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "get_viewport_size", + "base": "get_viewport_size", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/hide_all_objects.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/hide_all_objects.names index 8d5d77a78f..61bc6e2f23 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/hide_all_objects.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/hide_all_objects.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "hide_all_objects", + "base": "hide_all_objects", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "hide_all_objects", + "base": "hide_all_objects", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/hide_object.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/hide_object.names index f30f0a4e37..4df0d7458b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/hide_object.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/hide_object.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "hide_object", + "base": "hide_object", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "hide_object", + "base": "hide_object", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_enable.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_enable.names index 8ab9d80d37..751e63dad2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_enable.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_enable.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "idle_enable", + "base": "idle_enable", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "idle_enable", + "base": "idle_enable", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_is_enabled.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_is_enabled.names index 35fccf8339..7a910121fb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_is_enabled.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_is_enabled.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "idle_is_enabled", + "base": "idle_is_enabled", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "idle_is_enabled", + "base": "idle_is_enabled", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_wait.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_wait.names index 04574b306e..e90a794abb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_wait.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_wait.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "idle_wait", + "base": "idle_wait", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "idle_wait", + "base": "idle_wait", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_wait_frames.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_wait_frames.names index bbbb2e2d6c..809ba3291a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_wait_frames.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/idle_wait_frames.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "idle_wait_frames", + "base": "idle_wait_frames", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "idle_wait_frames", + "base": "idle_wait_frames", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_helpers_shown.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_helpers_shown.names index 7945c6f747..bddddbf5f6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_helpers_shown.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_helpers_shown.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "is_helpers_shown", + "base": "is_helpers_shown", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "is_helpers_shown", + "base": "is_helpers_shown", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_idle_enabled.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_idle_enabled.names index 82e2f26261..690c6a9e26 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_idle_enabled.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_idle_enabled.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "is_idle_enabled", + "base": "is_idle_enabled", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "is_idle_enabled", + "base": "is_idle_enabled", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_in_game_mode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_in_game_mode.names index c190c8f51a..62612ae3f0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_in_game_mode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_in_game_mode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "is_in_game_mode", + "base": "is_in_game_mode", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "is_in_game_mode", + "base": "is_in_game_mode", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_in_simulation_mode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_in_simulation_mode.names index 1cbf43acde..f4ae7b054a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_in_simulation_mode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_in_simulation_mode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "is_in_simulation_mode", + "base": "is_in_simulation_mode", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "is_in_simulation_mode", + "base": "is_in_simulation_mode", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_object_frozen.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_object_frozen.names index 7f8463fe2e..77c9aa1f3b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_object_frozen.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_object_frozen.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "is_object_frozen", + "base": "is_object_frozen", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "is_object_frozen", + "base": "is_object_frozen", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_object_hidden.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_object_hidden.names index 05439afc23..46d6757c9f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_object_hidden.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_object_hidden.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "is_object_hidden", + "base": "is_object_hidden", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "is_object_hidden", + "base": "is_object_hidden", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_pane_visible.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_pane_visible.names index 1c5ccdbbb9..1912f6cd4a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_pane_visible.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/is_pane_visible.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "is_pane_visible", + "base": "is_pane_visible", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "is_pane_visible", + "base": "is_pane_visible", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/launch_lua_editor.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/launch_lua_editor.names index 6441e1bcbf..faf537d82c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/launch_lua_editor.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/launch_lua_editor.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "launch_lua_editor", + "base": "launch_lua_editor", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "launch_lua_editor", + "base": "launch_lua_editor", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/load_all_plugins.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/load_all_plugins.names index 7dd292c231..ea52f9730f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/load_all_plugins.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/load_all_plugins.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "load_all_plugins", + "base": "load_all_plugins", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "load_all_plugins", + "base": "load_all_plugins", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/log.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/log.names index 45ac6166f3..77d1490486 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/log.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/log.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "log", + "base": "log", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "log", + "base": "log", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box.names index 934130445b..173dab3495 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "message_box", + "base": "message_box", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "message_box", + "base": "message_box", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box_ok.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box_ok.names index 41baa649e6..d743366a40 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box_ok.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box_ok.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "message_box_ok", + "base": "message_box_ok", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "message_box_ok", + "base": "message_box_ok", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box_yes_no.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box_yes_no.names index ddbdb555ce..4025735021 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box_yes_no.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/message_box_yes_no.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "message_box_yes_no", + "base": "message_box_yes_no", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "message_box_yes_no", + "base": "message_box_yes_no", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/new_sequence.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/new_sequence.names index 2a3f847e54..39736db34c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/new_sequence.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/new_sequence.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "new_sequence", + "base": "new_sequence", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "new_sequence", + "base": "new_sequence", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_file_box.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_file_box.names index 5f4f3c1149..859d6ddeae 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_file_box.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_file_box.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "open_file_box", + "base": "open_file_box", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "open_file_box", + "base": "open_file_box", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_level.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_level.names index 61e4630f84..2f3d6933bd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_level.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_level.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "open_level", + "base": "open_level", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "open_level", + "base": "open_level", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_level_no_prompt.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_level_no_prompt.names index 10cbd7b1b9..51662f268d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_level_no_prompt.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_level_no_prompt.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "open_level_no_prompt", + "base": "open_level_no_prompt", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "open_level_no_prompt", + "base": "open_level_no_prompt", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_pane.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_pane.names index 9f830cbee5..d438c7759f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_pane.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/open_pane.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "open_pane", + "base": "open_pane", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "open_pane", + "base": "open_pane", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/play_sequence.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/play_sequence.names index 4d12503a1e..df1c6cb348 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/play_sequence.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/play_sequence.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "play_sequence", + "base": "play_sequence", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "play_sequence", + "base": "play_sequence", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/redo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/redo.names index 463692b784..0a16085a12 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/redo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/redo.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "redo", + "base": "redo", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "redo", + "base": "redo", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/reload_current_level.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/reload_current_level.names index f031946ef4..9d327766d3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/reload_current_level.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/reload_current_level.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "reload_current_level", + "base": "reload_current_level", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "reload_current_level", + "base": "reload_current_level", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/rename_object.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/rename_object.names index 8ad522a4bb..4cd5fdb146 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/rename_object.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/rename_object.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "rename_object", + "base": "rename_object", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "rename_object", + "base": "rename_object", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/resize_viewport.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/resize_viewport.names index 799a539c9b..586f480591 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/resize_viewport.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/resize_viewport.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "resize_viewport", + "base": "resize_viewport", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "resize_viewport", + "base": "resize_viewport", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_console.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_console.names index be7fec1827..0454fdc37a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_console.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_console.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "run_console", + "base": "run_console", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "run_console", + "base": "run_console", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_file.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_file.names index a3afd9cbe6..4724515921 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_file.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_file.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "run_file", + "base": "run_file", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "run_file", + "base": "run_file", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_file_parameters.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_file_parameters.names index 97ddd6da4d..6417544230 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_file_parameters.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/run_file_parameters.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "run_file_parameters", + "base": "run_file_parameters", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "run_file_parameters", + "base": "run_file_parameters", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/save_level.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/save_level.names index 4d857d6b8c..f96f70092a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/save_level.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/save_level.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "save_level", + "base": "save_level", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "save_level", + "base": "save_level", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/select_object.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/select_object.names index 49d369b69d..c317cc8741 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/select_object.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/select_object.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "select_object", + "base": "select_object", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "select_object", + "base": "select_object", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/select_objects.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/select_objects.names index f2ba054656..30582c5674 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/select_objects.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/select_objects.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "select_objects", + "base": "select_objects", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "select_objects", + "base": "select_objects", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_active_viewport.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_active_viewport.names index 6e39f72c7a..dec588e357 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_active_viewport.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_active_viewport.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_active_viewport", + "base": "set_active_viewport", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_active_viewport", + "base": "set_active_viewport", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_axis_constraint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_axis_constraint.names index 976102bf40..df895c8aec 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_axis_constraint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_axis_constraint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_axis_constraint", + "base": "set_axis_constraint", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_axis_constraint", + "base": "set_axis_constraint", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_config_spec.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_config_spec.names index 3b6db1b770..61f95d9a04 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_config_spec.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_config_spec.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_config_spec", + "base": "set_config_spec", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_config_spec", + "base": "set_config_spec", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_sequence.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_sequence.names index 39d766270b..aa878daf01 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_sequence.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_sequence.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_current_sequence", + "base": "set_current_sequence", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_current_sequence", + "base": "set_current_sequence", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_view_position.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_view_position.names index d3d6c11b6d..7639083302 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_view_position.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_view_position.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_current_view_position", + "base": "set_current_view_position", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_current_view_position", + "base": "set_current_view_position", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_view_rotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_view_rotation.names index 528a8c067d..afffc8bc0f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_view_rotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_current_view_rotation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_current_view_rotation", + "base": "set_current_view_rotation", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_current_view_rotation", + "base": "set_current_view_rotation", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar.names index 1bf5764d4d..181d11bef8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_cvar", + "base": "set_cvar", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_cvar", + "base": "set_cvar", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_float.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_float.names index cc310cc8a9..c788a79edc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_float.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_float.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_cvar_float", + "base": "set_cvar_float", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_cvar_float", + "base": "set_cvar_float", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_integer.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_integer.names index 032fe7cc99..f5ec182a8a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_integer.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_integer.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_cvar_integer", + "base": "set_cvar_integer", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_cvar_integer", + "base": "set_cvar_integer", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_string.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_string.names index a5f7742511..f096f5528f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_string.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_cvar_string.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_cvar_string", + "base": "set_cvar_string", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_cvar_string", + "base": "set_cvar_string", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_misc_editor_settings.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_misc_editor_settings.names index 3c1367794d..00adf7c80f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_misc_editor_settings.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_misc_editor_settings.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_misc_editor_settings", + "base": "set_misc_editor_settings", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_misc_editor_settings", + "base": "set_misc_editor_settings", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_position.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_position.names index f37822b1df..fc9d588b4d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_position.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_position.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_position", + "base": "set_position", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_position", + "base": "set_position", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_recording.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_recording.names index 602dab9b4e..80c0825e98 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_recording.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_recording.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_recording", + "base": "set_recording", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_recording", + "base": "set_recording", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_result_to_failure.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_result_to_failure.names index 27678d2797..5ee0d43f1f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_result_to_failure.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_result_to_failure.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_result_to_failure", + "base": "set_result_to_failure", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_result_to_failure", + "base": "set_result_to_failure", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_result_to_success.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_result_to_success.names index 8cd35d8c2c..1abb4b73f1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_result_to_success.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_result_to_success.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_result_to_success", + "base": "set_result_to_success", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_result_to_success", + "base": "set_result_to_success", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_rotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_rotation.names index 796a6d4c20..c4024f2fc3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_rotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_rotation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_rotation", + "base": "set_rotation", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_rotation", + "base": "set_rotation", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_scale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_scale.names index edbb104612..9f2072047c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_scale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_scale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_scale", + "base": "set_scale", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_scale", + "base": "set_scale", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_sequence_time_range.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_sequence_time_range.names index aa0d3839c6..5d48f6e909 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_sequence_time_range.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_sequence_time_range.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_sequence_time_range", + "base": "set_sequence_time_range", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_sequence_time_range", + "base": "set_sequence_time_range", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_time.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_time.names index 85ad69a1d7..7cec862361 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_time.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_time.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_time", + "base": "set_time", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_time", + "base": "set_time", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_view_pane_layout.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_view_pane_layout.names index 622b51ca4b..bedaf68083 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_view_pane_layout.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_view_pane_layout.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_view_pane_layout", + "base": "set_view_pane_layout", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_view_pane_layout", + "base": "set_view_pane_layout", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_viewport_expansion_policy.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_viewport_expansion_policy.names index 7e4ac4e305..cbcfd8722b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_viewport_expansion_policy.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_viewport_expansion_policy.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_viewport_expansion_policy", + "base": "set_viewport_expansion_policy", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_viewport_expansion_policy", + "base": "set_viewport_expansion_policy", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_viewport_size.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_viewport_size.names index e5bc133444..473499e785 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_viewport_size.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/set_viewport_size.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "set_viewport_size", + "base": "set_viewport_size", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "set_viewport_size", + "base": "set_viewport_size", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/start_process_detached.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/start_process_detached.names index df5e6182a2..284efd4cb1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/start_process_detached.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/start_process_detached.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "start_process_detached", + "base": "start_process_detached", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "start_process_detached", + "base": "start_process_detached", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/stop_sequence.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/stop_sequence.names index 63f38ab444..8bd02f3962 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/stop_sequence.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/stop_sequence.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "stop_sequence", + "base": "stop_sequence", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "stop_sequence", + "base": "stop_sequence", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/test_output.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/test_output.names index acd55d4b22..472f548239 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/test_output.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/test_output.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "test_output", + "base": "test_output", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "test_output", + "base": "test_output", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/toggle_helpers.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/toggle_helpers.names index 0afcc9d471..f3d5f14365 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/toggle_helpers.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/toggle_helpers.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "toggle_helpers", + "base": "toggle_helpers", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "toggle_helpers", + "base": "toggle_helpers", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/undo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/undo.names index 3fb0afdbf4..9b222815c6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/undo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/undo.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "undo", + "base": "undo", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "undo", + "base": "undo", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unfreeze_object.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unfreeze_object.names index ad29537ab6..5b1d3c5d5c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unfreeze_object.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unfreeze_object.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "unfreeze_object", + "base": "unfreeze_object", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "unfreeze_object", + "base": "unfreeze_object", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unhide_all_objects.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unhide_all_objects.names index 204e2a3fbc..c2526a981a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unhide_all_objects.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unhide_all_objects.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "unhide_all_objects", + "base": "unhide_all_objects", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "unhide_all_objects", + "base": "unhide_all_objects", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unhide_object.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unhide_object.names index 22a74940a8..d15ceed4bb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unhide_object.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unhide_object.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "unhide_object", + "base": "unhide_object", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "unhide_object", + "base": "unhide_object", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unselect_objects.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unselect_objects.names index f0052c8c3d..19b8dba917 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unselect_objects.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/unselect_objects.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "unselect_objects", + "base": "unselect_objects", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "unselect_objects", + "base": "unselect_objects", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/update_viewport.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/update_viewport.names index da63239c14..d31ccb6f5a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/update_viewport.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/update_viewport.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "update_viewport", + "base": "update_viewport", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "update_viewport", + "base": "update_viewport", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/wait_for_debugger.names b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/wait_for_debugger.names index 1000a983b8..a8d361cd31 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/wait_for_debugger.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/GlobalMethods/wait_for_debugger.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "wait_for_debugger", + "base": "wait_for_debugger", "context": "Method", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "wait_for_debugger", + "base": "wait_for_debugger", "context": "Global", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Globals.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Globals.names index 1b93f04513..678897118c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Globals.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Globals.names @@ -1,7 +1,7 @@ { "entries" : [ { - "key": "EBusSenderBusId", + "base": "EBusSenderBusId", "context": "Globals", "details": { "name": "Source", @@ -9,7 +9,7 @@ } }, { - "key": "EBusHandlerBusId", + "base": "EBusHandlerBusId", "context": "Globals", "details": { @@ -18,7 +18,7 @@ } }, { - "key": "MissingFunction", + "base": "MissingFunction", "context": "Globals", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_AddElementatEnd.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_AddElementatEnd.names index 0d072e6ea8..30d402f254 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_AddElementatEnd.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_AddElementatEnd.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{11DDEEC1-7111-4655-B47F-8F0372B1A1A9}", + "base": "{11DDEEC1-7111-4655-B47F-8F0372B1A1A9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,26 +12,26 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Container", + "base": "DataOutput_Container", "details": { "name": "Container" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ClearAllElements.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ClearAllElements.names index b47f53879c..4e071c5e32 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ClearAllElements.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ClearAllElements.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{26DDC284-BD01-471E-BA8F-36C3A1ADA169}", + "base": "{26DDC284-BD01-471E-BA8F-36C3A1ADA169}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Container", + "base": "DataOutput_Container", "details": { "name": "Container" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_Erase.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_Erase.names index e383061fa8..601836b23d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_Erase.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_Erase.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F1A891C9-81D4-4675-A57A-F11AB415F95F}", + "base": "{F1A891C9-81D4-4675-A57A-F11AB415F95F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,33 +12,33 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Container", + "base": "DataOutput_Container", "details": { "name": "Container" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" } }, { - "key": "Output_Element Not Found", + "base": "Output_Element Not Found", "details": { "name": "Element Not Found", "tooltip": "Triggered if the specified element was not found" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ForEach.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ForEach.names index a2761b6317..817bbf8e17 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ForEach.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ForEach.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{31823035-A3FF-4B8D-A3A6-819519478B7C}", + "base": "{31823035-A3FF-4B8D-A3A6-819519478B7C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,34 +11,34 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signaled upon node entry" } }, { - "key": "Input_Break", + "base": "Input_Break", "details": { "name": "Break", "tooltip": "Stops the iteration when signaled" } }, { - "key": "Output_Each", + "base": "Output_Each", "details": { "name": "Each", "tooltip": "Signalled after each element of the container" } }, { - "key": "Output_Finished", + "base": "Output_Finished", "details": { "name": "Finished", "tooltip": "The container has been fully iterated over" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetElement.names index 78e2fa80bb..fab464a029 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetElement.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6A4FE29F-3BAA-40D6-8BEE-CDE9CCBD7885}", + "base": "{6A4FE29F-3BAA-40D6-8BEE-CDE9CCBD7885}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,27 +12,27 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" } }, { - "key": "Output_Key Not Found", + "base": "Output_Key Not Found", "details": { "name": "Key Not Found", "tooltip": "Triggered if the specified key was not found" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetFirstElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetFirstElement.names index 0caeac4589..fa616642b4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetFirstElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetFirstElement.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B0E10176-5DFE-4D34-BEF8-7EB575929CE7}", + "base": "{B0E10176-5DFE-4D34-BEF8-7EB575929CE7}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,20 +12,20 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetLastElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetLastElement.names index cf9a85190a..2c13a87d7b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetLastElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetLastElement.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B7E79DC5-21DA-4001-8284-85707C71C29B}", + "base": "{B7E79DC5-21DA-4001-8284-85707C71C29B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,20 +12,20 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetSize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetSize.names index 2f79842f7b..1f7dbdad03 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetSize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_GetSize.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{981EA18E-F421-4B39-9FF7-27322F3E8B14}", + "base": "{981EA18E-F421-4B39-9FF7-27322F3E8B14}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "DataOutput_Size", + "base": "DataOutput_Size", "details": { "name": "Size" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_Insert.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_Insert.names index 1aaf93f172..347510eeeb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_Insert.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_Insert.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{122B30C9-30A6-4CAF-B4E3-327A6C1A1E38}", + "base": "{122B30C9-30A6-4CAF-B4E3-327A6C1A1E38}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,26 +12,26 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Container", + "base": "DataOutput_Container", "details": { "name": "Container" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_IsEmpty.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_IsEmpty.names index 80ea4073b0..a3254521e2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_IsEmpty.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_IsEmpty.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{670FCD62-BAA8-4812-9CF2-C3F2EC5F54F5}", + "base": "{670FCD62-BAA8-4812-9CF2-C3F2EC5F54F5}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,39 +12,39 @@ }, "slots": [ { - "key": "DataOutput_Is Empty", + "base": "DataOutput_Is Empty", "details": { "name": "Is Empty" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "The container is empty" } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "The container is not empty" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_AZEventHandler.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_AZEventHandler.names index fad144c78d..af1e8efe7a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_AZEventHandler.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_AZEventHandler.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{38B808C5-152C-4643-A08C-463EBED55E19}", + "base": "{38B808C5-152C-4643-A08C-463EBED55E19}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,35 +11,35 @@ }, "slots": [ { - "key": "Input_Connect", + "base": "Input_Connect", "details": { "name": "Connect", "tooltip": "Connect the AZ Event to this AZ Event Handler." } }, { - "key": "Input_Disconnect", + "base": "Input_Disconnect", "details": { "name": "Disconnect", "tooltip": "Disconnect current AZ Event from this AZ Event Handler." } }, { - "key": "Output_On Connected", + "base": "Output_On Connected", "details": { "name": "On Connected", "tooltip": "Signaled when a connection has taken place." } }, { - "key": "Output_On Disconnected", + "base": "Output_On Disconnected", "details": { "name": "On Disconnected", "tooltip": "Signaled when this event handler is disconnected." } }, { - "key": "Output_OnEvent", + "base": "Output_OnEvent", "details": { "name": "OnEvent", "tooltip": "Triggered when the AZ Event invokes Signal() function." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_EventHandler.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_EventHandler.names index f48256fc26..1a09bb23d9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_EventHandler.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_EventHandler.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{33E12915-EFCA-4AA7-A188-D694DAD58980}", + "base": "{33E12915-EFCA-4AA7-A188-D694DAD58980}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,35 +11,35 @@ }, "slots": [ { - "key": "Input_Connect", + "base": "Input_Connect", "details": { "name": "Connect", "tooltip": "Connect this event handler to the specified entity." } }, { - "key": "Input_Disconnect", + "base": "Input_Disconnect", "details": { "name": "Disconnect", "tooltip": "Disconnect this event handler." } }, { - "key": "Output_OnConnected", + "base": "Output_OnConnected", "details": { "name": "OnConnected", "tooltip": "Signaled when a connection has taken place." } }, { - "key": "Output_OnDisconnected", + "base": "Output_OnDisconnected", "details": { "name": "OnDisconnected", "tooltip": "Signaled when this event handler is disconnected." } }, { - "key": "Output_OnFailure", + "base": "Output_OnFailure", "details": { "name": "OnFailure", "tooltip": "Signaled when it is not possible to connect this handler." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_FunctionCallNode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_FunctionCallNode.names index ee37919f03..6d7518a9f2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_FunctionCallNode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_FunctionCallNode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{ECFDD30E-A16D-4435-97B7-B2A4DF3C543A}", + "base": "{ECFDD30E-A16D-4435-97B7-B2A4DF3C543A}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_FunctionDefinition.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_FunctionDefinition.names index 6a92f74240..da666253e6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_FunctionDefinition.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_FunctionDefinition.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4EE28D9F-67FB-4E61-B777-5DC5B059710F}", + "base": "{4EE28D9F-67FB-4E61-B777-5DC5B059710F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,13 +12,13 @@ }, "slots": [ { - "key": "Input_ ", + "base": "Input_ ", "details": { "name": " " } }, { - "key": "Output_ ", + "base": "Output_ ", "details": { "name": " " } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_Method.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_Method.names index bcf7aa9fc1..a3caeb6440 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_Method.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_Method.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF}", + "base": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_MethodOverloaded.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_MethodOverloaded.names index 75b1a6e9ff..8c778bf0b6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_MethodOverloaded.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_MethodOverloaded.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C1E3C9D0-42E3-4D00-AE73-2A881E7E76A8}", + "base": "{C1E3C9D0-42E3-4D00-AE73-2A881E7E76A8}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_Nodeling.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_Nodeling.names index 1de4824300..58dd499c58 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_Nodeling.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_Nodeling.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4413EEA0-8D81-4D61-A1E1-3C1A437F3643}", + "base": "{4413EEA0-8D81-4D61-A1E1-3C1A437F3643}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_ReceiveScriptEvent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_ReceiveScriptEvent.names index a8bb3559df..ee0a92ccae 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_ReceiveScriptEvent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_ReceiveScriptEvent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{76CF9938-4A7E-4CDA-8DF3-77C10239D99C}", + "base": "{76CF9938-4A7E-4CDA-8DF3-77C10239D99C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,35 +11,35 @@ }, "slots": [ { - "key": "Input_Connect", + "base": "Input_Connect", "details": { "name": "Connect", "tooltip": "Connect this event handler to the specified entity." } }, { - "key": "Input_Disconnect", + "base": "Input_Disconnect", "details": { "name": "Disconnect", "tooltip": "Disconnect this event handler." } }, { - "key": "Output_OnConnected", + "base": "Output_OnConnected", "details": { "name": "OnConnected", "tooltip": "Signaled when a connection has taken place." } }, { - "key": "Output_OnDisconnected", + "base": "Output_OnDisconnected", "details": { "name": "OnDisconnected", "tooltip": "Signaled when this event handler is disconnected." } }, { - "key": "Output_OnFailure", + "base": "Output_OnFailure", "details": { "name": "OnFailure", "tooltip": "Signaled when it is not possible to connect this handler." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_SendScriptEvent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_SendScriptEvent.names index 6d1949f5de..d5faa52c52 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_SendScriptEvent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Core_SendScriptEvent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{64A97CC3-2BEA-4B47-809B-6C7DA34FD00F}", + "base": "{64A97CC3-2BEA-4B47-809B-6C7DA34FD00F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,14 +11,14 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Fires the specified ScriptEvent when signaled" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Trigged after the ScriptEvent has been signaled and returns" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Add.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Add.names index f3535c9627..e78805904d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Add.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Add.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2AFC1F99-6216-58E1-9E06-7F0E50C64E53}", + "base": "{2AFC1F99-6216-58E1-9E06-7F0E50C64E53}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Matrix3x3: A", + "base": "DataInput_Matrix3x3: A", "details": { "name": "Matrix3x3: A" } }, { - "key": "DataInput_Matrix3x3: B", + "base": "DataInput_Matrix3x3: B", "details": { "name": "Matrix3x3: B" } }, { - "key": "DataOutput_Result: Matrix3x3", + "base": "DataOutput_Result: Matrix3x3", "details": { "name": "Result: Matrix3x3" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_DivideByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_DivideByNumber.names index 2ed99278ea..32e7e9b9ca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_DivideByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_DivideByNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{397FA4E6-72E7-51EB-A546-70415FCCE4B0}", + "base": "{397FA4E6-72E7-51EB-A546-70415FCCE4B0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Matrix3x3: Source", + "base": "DataInput_Matrix3x3: Source", "details": { "name": "Matrix3x3: Source" } }, { - "key": "DataInput_Number: Divisor", + "base": "DataInput_Number: Divisor", "details": { "name": "Number: Divisor" } }, { - "key": "DataOutput_Result: Matrix3x3", + "base": "DataOutput_Result: Matrix3x3", "details": { "name": "Result: Matrix3x3" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_DivideByVector.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_DivideByVector.names index 047ddaf2cd..d0fbd8fefb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_DivideByVector.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_DivideByVector.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{57BA2085-2225-5E7E-B132-9CCD0AFC55EA}", + "base": "{57BA2085-2225-5E7E-B132-9CCD0AFC55EA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: Numerator", + "base": "DataInput_Vector3: Numerator", "details": { "name": "Vector3: Numerator" } }, { - "key": "DataInput_Vector3: Divisor", + "base": "DataInput_Vector3: Divisor", "details": { "name": "Vector3: Divisor" } }, { - "key": "DataOutput_Result: Vector3", + "base": "DataOutput_Result: Vector3", "details": { "name": "Result: Vector3" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Length.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Length.names index c1bd57ec2d..1f534b7480 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Length.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Length.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F269F2DB-F2D8-515D-BA5C-4C9E28A725E3}", + "base": "{F269F2DB-F2D8-515D-BA5C-4C9E28A725E3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Quaternion: Source", + "base": "DataInput_Quaternion: Source", "details": { "name": "Quaternion: Source" } }, { - "key": "DataOutput_Result: Number", + "base": "DataOutput_Result: Number", "details": { "name": "Result: Number" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByColor.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByColor.names index 3b78e5ec29..b5330e253a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByColor.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByColor.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8EE5053F-63BF-5E73-A88F-BD09C09DA9DB}", + "base": "{8EE5053F-63BF-5E73-A88F-BD09C09DA9DB}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Color: A", + "base": "DataInput_Color: A", "details": { "name": "Color: A" } }, { - "key": "DataInput_Color: B", + "base": "DataInput_Color: B", "details": { "name": "Color: B" } }, { - "key": "DataOutput_Result: Color", + "base": "DataOutput_Result: Color", "details": { "name": "Result: Color" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByMatrix.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByMatrix.names index 5e5ebdf865..934d7deea7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByMatrix.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByMatrix.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{FDB0FF00-F185-5CCF-851A-BBD5116C43EC}", + "base": "{FDB0FF00-F185-5CCF-851A-BBD5116C43EC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Matrix3x3: A", + "base": "DataInput_Matrix3x3: A", "details": { "name": "Matrix3x3: A" } }, { - "key": "DataInput_Matrix3x3: B", + "base": "DataInput_Matrix3x3: B", "details": { "name": "Matrix3x3: B" } }, { - "key": "DataOutput_Result: Matrix3x3", + "base": "DataOutput_Result: Matrix3x3", "details": { "name": "Result: Matrix3x3" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByRotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByRotation.names index 0dd6bdd33e..fa8a381927 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByRotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByRotation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F2A25BFC-41AA-5F9F-ABDF-48B662349AD6}", + "base": "{F2A25BFC-41AA-5F9F-ABDF-48B662349AD6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Quaternion: A", + "base": "DataInput_Quaternion: A", "details": { "name": "Quaternion: A" } }, { - "key": "DataInput_Quaternion: B", + "base": "DataInput_Quaternion: B", "details": { "name": "Quaternion: B" } }, { - "key": "DataOutput_Result: Quaternion", + "base": "DataOutput_Result: Quaternion", "details": { "name": "Result: Quaternion" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByTransform.names index 9f62840b3e..946f79aa5e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByTransform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{65B35991-D740-5DE6-815D-4FF5A24F08FD}", + "base": "{65B35991-D740-5DE6-815D-4FF5A24F08FD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Transform: A", + "base": "DataInput_Transform: A", "details": { "name": "Transform: A" } }, { - "key": "DataInput_Transform: B", + "base": "DataInput_Transform: B", "details": { "name": "Transform: B" } }, { - "key": "DataOutput_Result: Transform", + "base": "DataOutput_Result: Transform", "details": { "name": "Result: Transform" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByVector.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByVector.names index 9f9a08d3e4..70747caf68 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByVector.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_MultiplyByVector.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{111CD1EE-A5E8-583B-B339-FD48AFE7341C}", + "base": "{111CD1EE-A5E8-583B-B339-FD48AFE7341C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector4: Source", + "base": "DataInput_Vector4: Source", "details": { "name": "Vector4: Source" } }, { - "key": "DataInput_Vector4: Multiplier", + "base": "DataInput_Vector4: Multiplier", "details": { "name": "Vector4: Multiplier" } }, { - "key": "DataOutput_Result: Vector4", + "base": "DataOutput_Result: Vector4", "details": { "name": "Result: Vector4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Negate.names index c2fa0e5b4e..4f209d49d4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Negate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E2BE3BC4-5C86-5425-981D-E6A5EECC2C0C}", + "base": "{E2BE3BC4-5C86-5425-981D-E6A5EECC2C0C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Color: Source", + "base": "DataInput_Color: Source", "details": { "name": "Color: Source" } }, { - "key": "DataOutput_Result: Color", + "base": "DataOutput_Result: Color", "details": { "name": "Result: Color" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Subtract.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Subtract.names index 324007d226..ddd6536be0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Subtract.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Deprecated_Subtract.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C94009EE-73ED-5CA2-B1AC-026EB08D1EF5}", + "base": "{C94009EE-73ED-5CA2-B1AC-026EB08D1EF5}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: A", + "base": "DataInput_Vector3: A", "details": { "name": "Vector3: A" } }, { - "key": "DataInput_Vector3: B", + "base": "DataInput_Vector3: B", "details": { "name": "Vector3: B" } }, { - "key": "DataOutput_Result: Vector3", + "base": "DataOutput_Result: Vector3", "details": { "name": "Result: Vector3" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Developer_Mock.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Developer_Mock.names index 4e33483463..28d26f5b30 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Developer_Mock.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Developer_Mock.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{91B3D89A-4A4B-49FF-AD91-CAAC49E141A8}", + "base": "{91B3D89A-4A4B-49FF-AD91-CAAC49E141A8}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Developer_WrapperMock.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Developer_WrapperMock.names index 156e80f7a8..de6117ff88 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Developer_WrapperMock.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Developer_WrapperMock.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{14C6CE68-906A-4D2F-89BA-153774CE8015}", + "base": "{14C6CE68-906A-4D2F-89BA-153774CE8015}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityForward.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityForward.names index 3b3b996f45..582552020f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityForward.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityForward.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1657EA13-3DAF-5E38-8964-D4480017C601}", + "base": "{1657EA13-3DAF-5E38-8964-D4480017C601}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_EntityId", + "base": "DataInput_EntityId", "details": { "name": "EntityId" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityRight.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityRight.names index f2888839db..1d8a2958e5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityRight.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityRight.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6DE350DE-4FB9-5D7C-816A-48A3371613F3}", + "base": "{6DE350DE-4FB9-5D7C-816A-48A3371613F3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_EntityId", + "base": "DataInput_EntityId", "details": { "name": "EntityId" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityUp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityUp.names index d42ab7e908..55e4e5c419 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityUp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_GetEntityUp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B091D01E-170D-5FCC-9525-89CED4CDAB27}", + "base": "{B091D01E-170D-5FCC-9525-89CED4CDAB27}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_EntityId", + "base": "DataInput_EntityId", "details": { "name": "EntityId" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_IsActive.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_IsActive.names index f43c9385e7..5969f5e851 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_IsActive.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_IsActive.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E15BFD9C-5DD0-5BA9-8573-E3D38CC9ACD0}", + "base": "{E15BFD9C-5DD0-5BA9-8573-E3D38CC9ACD0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Entity Id", + "base": "DataInput_Entity Id", "details": { "name": "Entity Id" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_IsValid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_IsValid.names index 19d8fab52e..5f8783a4d6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_IsValid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_IsValid.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{54817D10-8D9E-5801-A507-8A2CE16F94E4}", + "base": "{54817D10-8D9E-5801-A507-8A2CE16F94E4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_ToString.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_ToString.names index 2d9f1e3c77..1c2d36859d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_ToString.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/EntityEntity_ToString.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BFC3DC19-979B-5277-8B42-00FCF0CCF52D}", + "base": "{BFC3DC19-979B-5277-8B42-00FCF0CCF52D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Input_InputHandler.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Input_InputHandler.names index 3d8d866497..e11a54b639 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Input_InputHandler.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Input_InputHandler.names @@ -1,57 +1,57 @@ { "entries": [ { - "key": "{0A2EB488-5A6A-E166-BB62-23FF81499E33}", + "base": "{0A2EB488-5A6A-E166-BB62-23FF81499E33}", "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "InputHandler", - "category": "Input", + "name": "Input Handler", + "category": "Input/Input System", "tooltip": "Handle processed input events found in input binding assets" }, "slots": [ { - "key": "Input_Connect Event", + "base": "Input_Connect Event", "details": { "name": "Connect Event", "tooltip": "Connect to input event name as defined in an input binding asset." } }, { - "key": "DataInput_Event Name", + "base": "DataInput_Event Name", "details": { "name": "Event Name" } }, { - "key": "Output_On Connect Event", + "base": "Output_On Connect Event", "details": { "name": "On Connect Event", "tooltip": "Connect to input event name as defined in an input binding asset." } }, { - "key": "Output_Pressed", + "base": "Output_Pressed", "details": { "name": "Pressed", "tooltip": "Signaled when the input event begins." } }, { - "key": "DataOutput_value", + "base": "DataOutput_value", "details": { "name": "value" } }, { - "key": "Output_Held", + "base": "Output_Held", "details": { "name": "Held", "tooltip": "Signaled while the input event is active." } }, { - "key": "Output_Released", + "base": "Output_Released", "details": { "name": "Released", "tooltip": "Signaled when the input event ends." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_ExpressionNodeBase.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_ExpressionNodeBase.names index 3d681d3e39..2d9711106c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_ExpressionNodeBase.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_ExpressionNodeBase.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{797C800D-8C96-4675-B5B5-2A321AC09433}", + "base": "{797C800D-8C96-4675-B5B5-2A321AC09433}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,7 +12,7 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_ScriptEvent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_ScriptEvent.names index 82e6bc7617..d475d33102 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_ScriptEvent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_ScriptEvent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B6614CEC-4788-476C-A19A-BA0A8B490C73}", + "base": "{B6614CEC-4788-476C-A19A-BA0A8B490C73}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_StringFormatted.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_StringFormatted.names index be94cea028..12ad68d7e3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_StringFormatted.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Internal_StringFormatted.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0B1577E0-339D-4573-93D1-6C311AD12A13}", + "base": "{0B1577E0-339D-4573-93D1-6C311AD12A13}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,20 +12,20 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/LogicDeprecated_Indexer.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/LogicDeprecated_Indexer.names index 82d430365d..21b990bd6e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/LogicDeprecated_Indexer.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/LogicDeprecated_Indexer.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{61E2CDC6-5CFA-47A2-8936-6A4332511E28}", + "base": "{61E2CDC6-5CFA-47A2-8936-6A4332511E28}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,63 +12,63 @@ }, "slots": [ { - "key": "Input_In0", + "base": "Input_In0", "details": { "name": "In0", "tooltip": "Input 0" } }, { - "key": "Input_In1", + "base": "Input_In1", "details": { "name": "In1", "tooltip": "Input 1" } }, { - "key": "Input_In2", + "base": "Input_In2", "details": { "name": "In2", "tooltip": "Input 2" } }, { - "key": "Input_In3", + "base": "Input_In3", "details": { "name": "In3", "tooltip": "Input 3" } }, { - "key": "Input_In4", + "base": "Input_In4", "details": { "name": "In4", "tooltip": "Input 4" } }, { - "key": "Input_In5", + "base": "Input_In5", "details": { "name": "In5", "tooltip": "Input 5" } }, { - "key": "Input_In6", + "base": "Input_In6", "details": { "name": "In6", "tooltip": "Input 6" } }, { - "key": "Input_In7", + "base": "Input_In7", "details": { "name": "In7", "tooltip": "Input 7" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled when the node is triggered." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_And.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_And.names index 24c7fefe80..a98ca0b451 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_And.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_And.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4043C9B7-4ACC-42FE-9C46-EAD7BB718C99}", + "base": "{4043C9B7-4ACC-42FE-9C46-EAD7BB718C99}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,40 +11,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Any.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Any.names index 4d57734566..d323290c96 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Any.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Any.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6359C34F-3C34-4784-9FFD-18F1C8E3482D}", + "base": "{6359C34F-3C34-4784-9FFD-18F1C8E3482D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,13 +11,13 @@ }, "slots": [ { - "key": "Input_Input 0", + "base": "Input_Input 0", "details": { "name": "Input 0" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled when the node receives a signal from the selected index" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Break.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Break.names index 0f07c55f1b..9763a75d7c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Break.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Break.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{931A68D0-E3AD-44A7-A7BB-126A8F39C02F}", + "base": "{931A68D0-E3AD-44A7-A7BB-126A8F39C02F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,13 +12,13 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out 0", + "base": "Output_Out 0", "details": { "name": "Out 0", "tooltip": "Output 0" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Cycle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Cycle.names index 16f28e96b8..0f7c401571 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Cycle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Cycle.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{974258F5-EE1B-4AEE-B956-C7B303801847}", + "base": "{974258F5-EE1B-4AEE-B956-C7B303801847}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,13 +11,13 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out 0", + "base": "Output_Out 0", "details": { "name": "Out 0", "tooltip": "Output 0" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_If.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_If.names index 95fde7b078..34d7c6b746 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_If.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_If.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F19CC10A-02FD-4E75-ADAA-9CFBD8A4E2F8}", + "base": "{F19CC10A-02FD-4E75-ADAA-9CFBD8A4E2F8}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,27 +11,27 @@ }, "slots": [ { - "key": "DataInput_Condition", + "base": "DataInput_Condition", "details": { "name": "Condition" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the condition provided evaluates to true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the condition provided evaluates to false." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_IsNull.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_IsNull.names index 381a1c56f2..b36abc7903 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_IsNull.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_IsNull.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{760CE936-7059-42A3-A177-530A662E4ECF}", + "base": "{760CE936-7059-42A3-A177-530A662E4ECF}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,33 +11,33 @@ }, "slots": [ { - "key": "DataInput_Reference", + "base": "DataInput_Reference", "details": { "name": "Reference" } }, { - "key": "DataOutput_Is Null", + "base": "DataOutput_Is Null", "details": { "name": "Is Null" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the reference provided is null." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the reference provided is not null." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Multiplexer.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Multiplexer.names index c7e7a7ebd3..a0c6110b96 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Multiplexer.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Multiplexer.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2FE432CB-9969-4273-BE04-DEF949C288F0}", + "base": "{2FE432CB-9969-4273-BE04-DEF949C288F0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,69 +11,69 @@ }, "slots": [ { - "key": "DataInput_Index", + "base": "DataInput_Index", "details": { "name": "Index" } }, { - "key": "Input_In0", + "base": "Input_In0", "details": { "name": "In0", "tooltip": "Input 0" } }, { - "key": "Input_In1", + "base": "Input_In1", "details": { "name": "In1", "tooltip": "Input 1" } }, { - "key": "Input_In2", + "base": "Input_In2", "details": { "name": "In2", "tooltip": "Input 2" } }, { - "key": "Input_In3", + "base": "Input_In3", "details": { "name": "In3", "tooltip": "Input 3" } }, { - "key": "Input_In4", + "base": "Input_In4", "details": { "name": "In4", "tooltip": "Input 4" } }, { - "key": "Input_In5", + "base": "Input_In5", "details": { "name": "In5", "tooltip": "Input 5" } }, { - "key": "Input_In6", + "base": "Input_In6", "details": { "name": "In6", "tooltip": "Input 6" } }, { - "key": "Input_In7", + "base": "Input_In7", "details": { "name": "In7", "tooltip": "Input 7" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled when the node receives a signal from the selected index" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Not.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Not.names index 79b7924e1f..37104685a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Not.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Not.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{EF6BA813-9AF9-45CF-A8A4-7F800D7B7CB0}", + "base": "{EF6BA813-9AF9-45CF-A8A4-7F800D7B7CB0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,33 +11,33 @@ }, "slots": [ { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Once.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Once.names index e841ecdb2d..f35f338941 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Once.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Once.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0E37D3CA-2862-4667-BFDB-7393DD48241B}", + "base": "{0E37D3CA-2862-4667-BFDB-7393DD48241B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,28 +11,28 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Input_Reset", + "base": "Input_Reset", "details": { "name": "Reset", "tooltip": "Reset signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" } }, { - "key": "Output_On Reset", + "base": "Output_On Reset", "details": { "name": "On Reset", "tooltip": "Triggered when Reset" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Or.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Or.names index 334acb117e..492f4d2a44 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Or.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Or.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{363F9994-8D55-4117-BE94-EFF536BDAC17}", + "base": "{363F9994-8D55-4117-BE94-EFF536BDAC17}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,40 +11,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_OrderedSequencer.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_OrderedSequencer.names index 10b97e3dab..c82ae5b04f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_OrderedSequencer.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_OrderedSequencer.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BAFDA139-49A8-453B-A556-D4F4BA213B5C}", + "base": "{BAFDA139-49A8-453B-A556-D4F4BA213B5C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,13 +12,13 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out 0", + "base": "Output_Out 0", "details": { "name": "Out 0", "tooltip": "Output 0" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_RandomSignal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_RandomSignal.names index 6fb5e1341f..75094119a8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_RandomSignal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_RandomSignal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{DFB13C5E-5FB3-4650-BD3A-E1AD79CD42AC}", + "base": "{DFB13C5E-5FB3-4650-BD3A-E1AD79CD42AC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,19 +12,19 @@ }, "slots": [ { - "key": "DataInput_Weight 1", + "base": "DataInput_Weight 1", "details": { "name": "Weight 1" } }, { - "key": "Output_Out 1", + "base": "Output_Out 1", "details": { "name": "Out 1" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Sequencer.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Sequencer.names index a97c4240c3..8856ddd2ac 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Sequencer.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Sequencer.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{CB98B828-BF86-4623-BF73-396A68FA386A}", + "base": "{CB98B828-BF86-4623-BF73-396A68FA386A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,82 +11,82 @@ }, "slots": [ { - "key": "DataInput_Index", + "base": "DataInput_Index", "details": { "name": "Index" } }, { - "key": "DataInput_Order", + "base": "DataInput_Order", "details": { "name": "Order" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Input_Next", + "base": "Input_Next", "details": { "name": "Next", "tooltip": "When next is activated, it enables the next output" } }, { - "key": "Output_Out0", + "base": "Output_Out0", "details": { "name": "Out0", "tooltip": "Output 0" } }, { - "key": "Output_Out1", + "base": "Output_Out1", "details": { "name": "Out1", "tooltip": "Output 1" } }, { - "key": "Output_Out2", + "base": "Output_Out2", "details": { "name": "Out2", "tooltip": "Output 2" } }, { - "key": "Output_Out3", + "base": "Output_Out3", "details": { "name": "Out3", "tooltip": "Output 3" } }, { - "key": "Output_Out4", + "base": "Output_Out4", "details": { "name": "Out4", "tooltip": "Output 4" } }, { - "key": "Output_Out5", + "base": "Output_Out5", "details": { "name": "Out5", "tooltip": "Output 5" } }, { - "key": "Output_Out6", + "base": "Output_Out6", "details": { "name": "Out6", "tooltip": "Output 6" } }, { - "key": "Output_Out7", + "base": "Output_Out7", "details": { "name": "Out7", "tooltip": "Output 7" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Switch.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Switch.names index 20d7175aba..3791eb864e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Switch.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_Switch.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E1B5F3F8-AFEE-42C9-A22C-CB93F8281CC4}", + "base": "{E1B5F3F8-AFEE-42C9-A22C-CB93F8281CC4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,19 +11,19 @@ }, "slots": [ { - "key": "DataInput_Index", + "base": "DataInput_Index", "details": { "name": "Index" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out 0", + "base": "Output_Out 0", "details": { "name": "Out 0", "tooltip": "Output 0" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_While.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_While.names index ccd9bfb6b3..a1bd16a211 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_While.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Logic_While.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C5BDF392-9669-4928-A0F5-F55B8A5B3BAC}", + "base": "{C5BDF392-9669-4928-A0F5-F55B8A5B3BAC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,26 +11,26 @@ }, "slots": [ { - "key": "DataInput_Condition", + "base": "DataInput_Condition", "details": { "name": "Condition" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signalled if the condition is false, or if the loop calls the break node" } }, { - "key": "Output_Loop", + "base": "Output_Loop", "details": { "name": "Loop", "tooltip": "Signalled if the condition is true, and every time the last node of 'Loop' finishes" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddAABB.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddAABB.names index 0b5c5f26ea..81545f0ba2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddAABB.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddAABB.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0C1257A0-DB57-5E29-9CA4-595B3AE8BA87}", + "base": "{0C1257A0-DB57-5E29-9CA4-595B3AE8BA87}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: A", + "base": "DataInput_AABB: A", "details": { "name": "First" } }, { - "key": "DataInput_AABB: B", + "base": "DataInput_AABB: B", "details": { "name": "Second" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddPoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddPoint.names index e22bafcc60..fd88952e19 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddPoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddPoint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2FEFADF8-0D3F-5796-BB6B-C7B8758A5751}", + "base": "{2FEFADF8-0D3F-5796-BB6B-C7B8758A5751}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataInput_Vector3: Point", + "base": "DataInput_Vector3: Point", "details": { "name": "Point" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ApplyTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ApplyTransform.names index ad01a37239..874cd39c9f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ApplyTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ApplyTransform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B1930C91-3527-593E-A382-DACC9E9C2245}", + "base": "{B1930C91-3527-593E-A382-DACC9E9C2245}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataInput_Transform: Transform", + "base": "DataInput_Transform: Transform", "details": { "name": "Transform" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Center.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Center.names index 5f3fe027f2..c9118de014 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Center.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Center.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5B16FDCF-5FB0-5059-97E6-76AA11871337}", + "base": "{5B16FDCF-5FB0-5059-97E6-76AA11871337}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "base": "DataOutput_Result: Vector3", "details": { "name": "Center" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Clamp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Clamp.names index 0e7ee2c5bf..2062682005 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Clamp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Clamp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A03CA593-2B2E-5BEE-9A63-118D2F1E9DED}", + "base": "{A03CA593-2B2E-5BEE-9A63-118D2F1E9DED}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataInput_AABB: Clamp", + "base": "DataInput_AABB: Clamp", "details": { "name": "Clamp" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsAABB.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsAABB.names index aad3bbf1c1..7c208bcdd6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsAABB.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsAABB.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A0A7B5F1-F191-52A8-838A-DB39AADBA457}", + "base": "{A0A7B5F1-F191-52A8-838A-DB39AADBA457}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataInput_AABB: Candidate", + "base": "DataInput_AABB: Candidate", "details": { "name": "Candidate" } }, { - "key": "DataOutput_Result: Boolean", + "base": "DataOutput_Result: Boolean", "details": { "name": "Contains" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsVector3.names index 9fc7673965..c3d7c00e94 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsVector3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BD9731E7-78AD-5864-8617-25DE422C6CDE}", + "base": "{BD9731E7-78AD-5864-8617-25DE422C6CDE}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataInput_Vector3: Candidate", + "base": "DataInput_Vector3: Candidate", "details": { "name": "Candidate" } }, { - "key": "DataOutput_Result: Boolean", + "base": "DataOutput_Result: Boolean", "details": { "name": "Contains" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Distance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Distance.names index 579771fef0..7c8e0ebb3a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Distance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Distance.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6D65A9E0-733D-5277-B7CA-983E1468A40A}", + "base": "{6D65A9E0-733D-5277-B7CA-983E1468A40A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataInput_Vector3: Point", + "base": "DataInput_Vector3: Point", "details": { "name": "Point" } }, { - "key": "DataOutput_Result: Number", + "base": "DataOutput_Result: Number", "details": { "name": "Distance" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Expand.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Expand.names index 08a7f8ee38..05390a20e5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Expand.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Expand.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8B74AC3B-2089-5D55-BD66-3F57B3212D57}", + "base": "{8B74AC3B-2089-5D55-BD66-3F57B3212D57}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataInput_Vector3: Delta", + "base": "DataInput_Vector3: Delta", "details": { "name": "Delta" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Extents.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Extents.names index 2cbc987e31..db3ddc567f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Extents.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Extents.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C98626B6-E60F-525C-8763-4A906AD31903}", + "base": "{C98626B6-E60F-525C-8763-4A906AD31903}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "Source", + "base": "Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "base": "DataOutput_Result: Vector3", "details": { "name": "Extents" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterHalfExtents.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterHalfExtents.names index 3261d0c3d2..d1c6a9ca27 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterHalfExtents.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterHalfExtents.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{3EF44A2E-F065-5F2A-906D-A139AEA6DF4E}", + "base": "{3EF44A2E-F065-5F2A-906D-A139AEA6DF4E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: Center", + "base": "DataInput_Vector3: Center", "details": { "name": "Center" } }, { - "key": "DataInput_Vector3: HalfExtents", + "base": "DataInput_Vector3: HalfExtents", "details": { "name": "Half Extents" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterRadius.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterRadius.names index 204047ee15..06a369986d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterRadius.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterRadius.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2AC22BD2-2150-58C2-8C0A-F9B83E2559F5}", + "base": "{2AC22BD2-2150-58C2-8C0A-F9B83E2559F5}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: Center", + "base": "DataInput_Vector3: Center", "details": { "name": "Center" } }, { - "key": "DataInput_Number: Radius", + "base": "DataInput_Number: Radius", "details": { "name": "Radius" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromMinMax.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromMinMax.names index 2b6030e8fb..982b3b8342 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromMinMax.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromMinMax.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8B033820-B205-560A-A735-8BBED0B02DDD}", + "base": "{8B033820-B205-560A-A735-8BBED0B02DDD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: Min", + "base": "DataInput_Vector3: Min", "details": { "name": "Min" } }, { - "key": "DataInput_Vector3: Max", + "base": "DataInput_Vector3: Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromOBB.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromOBB.names index 189aa8d744..205f2373e4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromOBB.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromOBB.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{95A84A7D-9D3C-59AE-9463-1CC41D275239}", + "base": "{95A84A7D-9D3C-59AE-9463-1CC41D275239}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_OBB: Source", + "base": "DataInput_OBB: Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromPoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromPoint.names index 433a318baf..7bd74f5e61 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromPoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromPoint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E578074B-7D9E-5339-A2CC-1A23B32E27B5}", + "base": "{E578074B-7D9E-5339-A2CC-1A23B32E27B5}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: Source", + "base": "DataInput_Vector3: Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMax.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMax.names index 3ef427e774..0eb6d80940 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMax.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMax.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6C71D076-0427-56B4-8A95-1DCB1835D1BF}", + "base": "{6C71D076-0427-56B4-8A95-1DCB1835D1BF}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "base": "DataOutput_Result: Vector3", "details": { "name": "Max" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMin.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMin.names index d8acde7296..8bcf1804db 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMin.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMin.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E699BC04-CAA6-5E1A-BBC0-797510227CBC}", + "base": "{E699BC04-CAA6-5E1A-BBC0-797510227CBC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "base": "DataOutput_Result: Vector3", "details": { "name": "Min" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsFinite.names index 004ecd1e0e..14a10d9b46 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5B585330-B99A-5FDF-BA3C-CDA72468D4CA}", + "base": "{5B585330-B99A-5FDF-BA3C-CDA72468D4CA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "base": "DataOutput_Result: Boolean", "details": { "name": "Is Finite" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsValid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsValid.names index 7f7f08e3cf..9c6d0dc8ff 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsValid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsValid.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{30BE564D-B68D-5D23-BDA1-625A7A8F9504}", + "base": "{30BE564D-B68D-5D23-BDA1-625A7A8F9504}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "AABB: Source" } }, { - "key": "DataOutput_Result: Boolean", + "base": "DataOutput_Result: Boolean", "details": { "name": "Is Valid" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Null.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Null.names index 62c7cb2b17..48c6bd2b60 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Null.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Null.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{783E6976-E519-5BC0-BD33-049847564F5E}", + "base": "{783E6976-E519-5BC0-BD33-049847564F5E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,19 +12,19 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "Invalid AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Overlaps.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Overlaps.names index 4474f1220b..56b83a6eb8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Overlaps.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Overlaps.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{CE4AF636-AB72-589D-92E9-A3C75A3F9C7F}", + "base": "{CE4AF636-AB72-589D-92E9-A3C75A3F9C7F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: A", + "base": "DataInput_AABB: A", "details": { "name": "AABB: A" } }, { - "key": "DataInput_AABB: B", + "base": "DataInput_AABB: B", "details": { "name": "AABB: B" } }, { - "key": "DataOutput_Result: Boolean", + "base": "DataOutput_Result: Boolean", "details": { "name": "Result: Boolean" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_SurfaceArea.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_SurfaceArea.names index 2b206cfcfc..b0e2985fbb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_SurfaceArea.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_SurfaceArea.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{46EE9F31-DDE1-5482-9A03-A0D4A6BE429C}", + "base": "{46EE9F31-DDE1-5482-9A03-A0D4A6BE429C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "AABB: Source" } }, { - "key": "DataOutput_Result: Number", + "base": "DataOutput_Result: Number", "details": { "name": "Result: Number" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ToSphere.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ToSphere.names index 9a07c147c6..e77bde466f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ToSphere.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ToSphere.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{214CCB41-01CA-578C-9D7F-1237202A885B}", + "base": "{214CCB41-01CA-578C-9D7F-1237202A885B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "AABB: Source" } }, { - "key": "DataOutput_Center: Vector3", + "base": "DataOutput_Center: Vector3", "details": { "name": "Center: Vector3" } }, { - "key": "DataOutput_Radius: Number", + "base": "DataOutput_Radius: Number", "details": { "name": "Radius: Number" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Translate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Translate.names index 01037b2bff..0be4731085 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Translate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Translate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{22DBE624-D16E-51E7-BFF5-6C136E8E4581}", + "base": "{22DBE624-D16E-51E7-BFF5-6C136E8E4581}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "AABB: Source" } }, { - "key": "DataInput_Vector3: Translation", + "base": "DataInput_Vector3: Translation", "details": { "name": "Vector3: Translation" } }, { - "key": "DataOutput_Result: AABB", + "base": "DataOutput_Result: AABB", "details": { "name": "Result: AABB" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_XExtent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_XExtent.names index 23e8921ab8..f6051e7dc8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_XExtent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_XExtent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{58B36FE7-19EB-5407-95BD-D16C62F04E0D}", + "base": "{58B36FE7-19EB-5407-95BD-D16C62F04E0D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "AABB: Source" } }, { - "key": "DataOutput_Result: Number", + "base": "DataOutput_Result: Number", "details": { "name": "Result: Number" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_YExtent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_YExtent.names index 3e28799512..eab2924849 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_YExtent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_YExtent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{631968DE-47B3-5214-B564-E14025135BAA}", + "base": "{631968DE-47B3-5214-B564-E14025135BAA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "AABB: Source" } }, { - "key": "DataOutput_Result: Number", + "base": "DataOutput_Result: Number", "details": { "name": "Result: Number" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ZExtent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ZExtent.names index c470eafa0c..4a107a844d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ZExtent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ZExtent.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0CE6DD20-9E09-5CCE-A514-196958FD4871}", + "base": "{0CE6DD20-9E09-5CCE-A514-196958FD4871}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_AABB: Source", + "base": "DataInput_AABB: Source", "details": { "name": "AABB: Source" } }, { - "key": "DataOutput_Result: Number", + "base": "DataOutput_Result: Number", "details": { "name": "Result: Number" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot.names index 9433f13d04..a3eef6a2e7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{92A67932-241C-5BF4-8D4F-327F3E819F56}", + "base": "{92A67932-241C-5BF4-8D4F-327F3E819F56}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Color: A", + "base": "DataInput_Color: A", "details": { "name": "Color: A" } }, { - "key": "DataInput_Color: B", + "base": "DataInput_Color: B", "details": { "name": "Color: B" } }, { - "key": "DataOutput_Result: Number", + "base": "DataOutput_Result: Number", "details": { "name": "Result: Number" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot3.names index 16d5b36eb0..7ddb05f4dd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{91E89FD2-F929-5491-BD2A-4B83D2455AAB}", + "base": "{91E89FD2-F929-5491-BD2A-4B83D2455AAB}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromValues.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromValues.names index 01b5ac9cb9..45e436bce6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromValues.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromValues.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{84F9B63C-F6F5-58AD-8669-C25287CDC037}", + "base": "{84F9B63C-F6F5-58AD-8669-C25287CDC037}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,43 +11,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_R", + "base": "DataInput_R", "details": { "name": "R" } }, { - "key": "DataInput_G", + "base": "DataInput_G", "details": { "name": "G" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3.names index e87ad523b0..c709935b7c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4EC849DB-B390-5C13-ADE9-A0CD8F06D63E}", + "base": "{4EC849DB-B390-5C13-ADE9-A0CD8F06D63E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_RGB", + "base": "DataInput_RGB", "details": { "name": "RGB" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3AndNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3AndNumber.names index 3d657ed1a0..61004481db 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3AndNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3AndNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5829F3E6-1F1D-58C2-BD72-66D4DE866AB9}", + "base": "{5829F3E6-1F1D-58C2-BD72-66D4DE866AB9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: RGB", + "base": "DataInput_Vector3: RGB", "details": { "name": "Red, Green, Blue" } }, { - "key": "DataInput_Number: A", + "base": "DataInput_Number: A", "details": { "name": "Alpha" } }, { - "key": "DataOutput_Result: Color", + "base": "DataOutput_Result: Color", "details": { "name": "Color" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_GammaToLinear.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_GammaToLinear.names index f9ed687835..b02a810b0f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_GammaToLinear.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_GammaToLinear.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{721CF0C9-BE86-59B4-A5B6-AC936744CE5E}", + "base": "{721CF0C9-BE86-59B4-A5B6-AC936744CE5E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Color: Source", + "base": "DataInput_Color: Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result: Color", + "base": "DataOutput_Result: Color", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsClose.names index 430cf90d8b..7f7038d383 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsClose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{629BABFE-B9D2-5D29-BCC1-3E5CBDD7CAA4}", + "base": "{629BABFE-B9D2-5D29-BCC1-3E5CBDD7CAA4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,37 +12,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Color: A", + "base": "DataInput_Color: A", "details": { "name": "First" } }, { - "key": "DataInput_Color: B", + "base": "DataInput_Color: B", "details": { "name": "Second" } }, { - "key": "DataInput_Number: Tolerance", + "base": "DataInput_Number: Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "base": "DataOutput_Result: Boolean", "details": { "name": "Is Close" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsZero.names index f22b3e3773..31b2a61f3d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsZero.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8A949DAB-0F0E-52FA-83EF-EA75B38076C8}", + "base": "{8A949DAB-0F0E-52FA-83EF-EA75B38076C8}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Color: Source", + "base": "DataInput_Color: Source", "details": { "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "base": "DataInput_Number: Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "base": "DataOutput_Result: Boolean", "details": { "name": "Is Zero" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_LinearToGamma.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_LinearToGamma.names index fa1d06b510..ba7118a997 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_LinearToGamma.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_LinearToGamma.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8F561D51-2991-5493-8CED-B2FBAF168E72}", + "base": "{8F561D51-2991-5493-8CED-B2FBAF168E72}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_MultiplyByNumber.names index 4bf7062cb7..7f67402d65 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_MultiplyByNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B779B815-EC1B-5075-A167-0F213445BB53}", + "base": "{B779B815-EC1B-5075-A167-0F213445BB53}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Color: Source", + "base": "DataInput_Color: Source", "details": { "name": "Color: Source" } }, { - "key": "DataInput_Number: Multiplier", + "base": "DataInput_Number: Multiplier", "details": { "name": "Number: Multiplier" } }, { - "key": "DataOutput_Result: Color", + "base": "DataOutput_Result: Color", "details": { "name": "Result: Color" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_One.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_One.names index 99d7f96b84..7034549282 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_One.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_One.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E70E232F-9B2E-5802-9A58-422D47D88405}", + "base": "{E70E232F-9B2E-5802-9A58-422D47D88405}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,19 +12,19 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataOutput_Result: Color", + "base": "DataOutput_Result: Color", "details": { "name": "Result: Color" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_EqualTo_==_.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_EqualTo_==_.names index fdf52ec08d..e3c8499aee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_EqualTo_==_.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_EqualTo_==_.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{02A3A3E6-9D80-432B-8AF5-F3AF24CF6959}", + "base": "{02A3A3E6-9D80-432B-8AF5-F3AF24CF6959}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,40 +11,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_GreaterThan__.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_GreaterThan__.names index b2c3ca2d50..36f3163ae4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_GreaterThan__.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_GreaterThan__.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{218F5872-8D89-4FEA-9761-662625E29580}", + "base": "{218F5872-8D89-4FEA-9761-662625E29580}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,40 +11,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_GreaterThanorEqualTo_=_.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_GreaterThanorEqualTo_=_.names index 5422a38082..68dc66c790 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_GreaterThanorEqualTo_=_.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_GreaterThanorEqualTo_=_.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8CA0C442-9139-4180-96EC-300FF888C35A}", + "base": "{8CA0C442-9139-4180-96EC-300FF888C35A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,40 +11,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_LessThan___.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_LessThan___.names index 44db07b347..1247a766f5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_LessThan___.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_LessThan___.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1B93426F-AAA2-4134-BE9A-C33B8F07F867}", + "base": "{1B93426F-AAA2-4134-BE9A-C33B8F07F867}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,40 +11,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_LessThanorEqualTo__=_.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_LessThanorEqualTo__=_.names index 1c06e26cd6..f0e9e1602f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_LessThanorEqualTo__=_.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_LessThanorEqualTo__=_.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{73F6E302-A2E9-4BE6-A88F-98F81A24100D}", + "base": "{73F6E302-A2E9-4BE6-A88F-98F81A24100D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,40 +11,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_NotEqualTo_!=_.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_NotEqualTo_!=_.names index e14af5ed2f..6be7dfcbf6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_NotEqualTo_!=_.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathComparisons_NotEqualTo_!=_.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C8D7A10F-A919-4467-96B1-F1852C282628}", + "base": "{C8D7A10F-A919-4467-96B1-F1852C282628}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,40 +11,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathCrc32_FromString.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathCrc32_FromString.names index 56b63ed01f..5ab5075de1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathCrc32_FromString.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathCrc32_FromString.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5C734A52-7CB1-5571-B6B2-F1C19A8CCE5A}", + "base": "{5C734A52-7CB1-5571-B6B2-F1C19A8CCE5A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Text" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromColumns.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromColumns.names index e9c3ac7672..3d2cd9186f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromColumns.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromColumns.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2185A730-0CA3-5B97-8150-51D9F28EA9C8}", + "base": "{2185A730-0CA3-5B97-8150-51D9F28EA9C8}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Column1", + "base": "DataInput_Column1", "details": { "name": "Column 1" } }, { - "key": "DataInput_Column2", + "base": "DataInput_Column2", "details": { "name": "Column 2" } }, { - "key": "DataInput_Column3", + "base": "DataInput_Column3", "details": { "name": "Column 3" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromCrossProduct.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromCrossProduct.names index f823176f14..03cfbb8526 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromCrossProduct.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromCrossProduct.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{06538E6D-FE44-5A9C-8081-083D5D19D4FC}", + "base": "{06538E6D-FE44-5A9C-8081-083D5D19D4FC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromDiagonal.names index 9f9c083534..9725855cf1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromDiagonal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F99F5D84-CDE6-5130-BAAC-7377F52D34FD}", + "base": "{F99F5D84-CDE6-5130-BAAC-7377F52D34FD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromMatrix4x4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromMatrix4x4.names index f88782a2ee..4f8d7ec9d9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromMatrix4x4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromMatrix4x4.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5E5DA784-9D18-595F-BB1E-FA3AC8BA7DD6}", + "base": "{5E5DA784-9D18-595F-BB1E-FA3AC8BA7DD6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromQuaternion.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromQuaternion.names index 1ddbce8343..64c63a37e2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromQuaternion.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromQuaternion.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1D87EFAE-3FC2-5D8A-931D-7D56DB4E3123}", + "base": "{1D87EFAE-3FC2-5D8A-931D-7D56DB4E3123}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationXDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationXDegrees.names index 20c7570899..23275a718e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationXDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationXDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{478D4CC5-BC42-574A-A81C-818FA9A3C635}", + "base": "{478D4CC5-BC42-574A-A81C-818FA9A3C635}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationYDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationYDegrees.names index c5558e192a..e52288fade 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationYDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationYDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A69D13B7-FBC3-5038-93CD-4FB822CFF8D4}", + "base": "{A69D13B7-FBC3-5038-93CD-4FB822CFF8D4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationZDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationZDegrees.names index 3c31f1c3ab..888a75aff2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationZDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationZDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5E449312-5741-59EB-A778-7FB6C75DB90A}", + "base": "{5E449312-5741-59EB-A778-7FB6C75DB90A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRows.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRows.names index 7bcda04e10..3a3cdb722d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRows.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRows.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B70E2447-DE12-5D81-80E4-06BEE5A0219E}", + "base": "{B70E2447-DE12-5D81-80E4-06BEE5A0219E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Row1", + "base": "DataInput_Row1", "details": { "name": "Row 1" } }, { - "key": "DataInput_Row2", + "base": "DataInput_Row2", "details": { "name": "Row 2" } }, { - "key": "DataInput_Row3", + "base": "DataInput_Row3", "details": { "name": "Row 3" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromScale.names index 1caf6865ca..3040759f1f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromScale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A3F6A35C-068E-57D5-9761-69DC5AB0BD1B}", + "base": "{A3F6A35C-068E-57D5-9761-69DC5AB0BD1B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromTransform.names index 509fda12d3..11a310374e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromTransform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F54FFF79-75FF-5444-B941-DF216680BEA1}", + "base": "{F54FFF79-75FF-5444-B941-DF216680BEA1}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Transform", + "base": "DataInput_Transform", "details": { "name": "Transform" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumn.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumn.names index a34e468150..60a538ecd7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumn.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumn.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{50724E19-5472-5E35-9F88-F226ABB37D1A}", + "base": "{50724E19-5472-5E35-9F88-F226ABB37D1A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Column", + "base": "DataInput_Column", "details": { "name": "Column" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumns.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumns.names index 104ca88d50..5cb723836e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumns.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumns.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{13EE83FC-EA87-5957-966F-EFD4E88A7698}", + "base": "{13EE83FC-EA87-5957-966F-EFD4E88A7698}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Column1", + "base": "DataOutput_Column1", "details": { "name": "Column 1" } }, { - "key": "DataOutput_Column2", + "base": "DataOutput_Column2", "details": { "name": "Column 2" } }, { - "key": "DataOutput_Column3", + "base": "DataOutput_Column3", "details": { "name": "Column 3" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names index 1c64bf8f40..3516b89257 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{68B65AD0-B42F-5C85-B194-4FC6C31AD237}", + "base": "{68B65AD0-B42F-5C85-B194-4FC6C31AD237}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetElement.names index 0cf502fad0..7d9f46c441 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetElement.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6FA2A21C-2189-55E4-B65E-2A961586F31E}", + "base": "{6FA2A21C-2189-55E4-B65E-2A961586F31E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Row", + "base": "DataInput_Row", "details": { "name": "Row" } }, { - "key": "DataInput_Column", + "base": "DataInput_Column", "details": { "name": "Column" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRow.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRow.names index f886bcbd50..f85577a201 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRow.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRow.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{89B55821-3E77-5410-B0EC-336A3D747308}", + "base": "{89B55821-3E77-5410-B0EC-336A3D747308}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Row", + "base": "DataInput_Row", "details": { "name": "Row" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRows.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRows.names index fc06f37dfb..98834cbfe4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRows.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRows.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8DE78AF8-44B4-58D8-AC3B-7B4ED77B75DF}", + "base": "{8DE78AF8-44B4-58D8-AC3B-7B4ED77B75DF}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Row1", + "base": "DataOutput_Row1", "details": { "name": "Row 1" } }, { - "key": "DataOutput_Row2", + "base": "DataOutput_Row2", "details": { "name": "Row 2" } }, { - "key": "DataOutput_Row3", + "base": "DataOutput_Row3", "details": { "name": "Row 3" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Invert.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Invert.names index 24131fb847..c128a22337 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Invert.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Invert.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1F420C54-6920-511B-9025-D91E92ABF0C3}", + "base": "{1F420C54-6920-511B-9025-D91E92ABF0C3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsClose.names index 403df39120..03d72efaf8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsClose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{87F8C39D-47CC-5E63-B02A-675F2F1EE56E}", + "base": "{87F8C39D-47CC-5E63-B02A-675F2F1EE56E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsFinite.names index be00053f63..11cf183614 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{36E2943D-23B3-5CBA-A7EC-AA51288075AA}", + "base": "{36E2943D-23B3-5CBA-A7EC-AA51288075AA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsOrthogonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsOrthogonal.names index 68dbdac032..f0e0fba7e1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsOrthogonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsOrthogonal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1A78319F-7924-5114-8D85-C09C6F8D701D}", + "base": "{1A78319F-7924-5114-8D85-C09C6F8D701D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByNumber.names index 174394484a..79f5fee679 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2B0CF330-B397-519C-867F-800AECBB84A8}", + "base": "{2B0CF330-B397-519C-867F-800AECBB84A8}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Multiplier", + "base": "DataInput_Multiplier", "details": { "name": "Multiplier" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByVector.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByVector.names index bc6f6fa58e..bd4f2c6ece 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByVector.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByVector.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6FAEAA22-12D6-51E5-8600-F60103ECFF8C}", + "base": "{6FAEAA22-12D6-51E5-8600-F60103ECFF8C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Vector", + "base": "DataInput_Vector", "details": { "name": "Vector" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Orthogonalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Orthogonalize.names index 626c0007f0..cb1a2ffc69 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Orthogonalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Orthogonalize.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BFC5A535-734B-54E8-BDF1-B60120D831EC}", + "base": "{BFC5A535-734B-54E8-BDF1-B60120D831EC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToAdjugate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToAdjugate.names index ee10f47d79..32dc94b070 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToAdjugate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToAdjugate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{FDE00D83-D0A6-5ACA-B48B-DD5E0415FF80}", + "base": "{FDE00D83-D0A6-5ACA-B48B-DD5E0415FF80}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToDeterminant.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToDeterminant.names index c1f45fec65..eecd614044 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToDeterminant.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToDeterminant.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D0C69C1C-1653-54A4-8A5A-1ECB3500D9C1}", + "base": "{D0C69C1C-1653-54A4-8A5A-1ECB3500D9C1}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Determinant", + "base": "DataOutput_Determinant", "details": { "name": "Determinant" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToScale.names index ded60634b3..27680a0107 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToScale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8250935C-5B8D-5DF4-9E09-FDA2A445C099}", + "base": "{8250935C-5B8D-5DF4-9E09-FDA2A445C099}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Transpose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Transpose.names index c03d1e9be7..495a34df7c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Transpose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Transpose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F57314B3-AFD8-5BDB-A0F0-8EAF5C13CAC9}", + "base": "{F57314B3-AFD8-5BDB-A0F0-8EAF5C13CAC9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Zero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Zero.names index c9102e659b..036dd90b45 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Zero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Zero.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{66D46B8E-5722-57DB-8760-61AE1D69E6A3}", + "base": "{66D46B8E-5722-57DB-8760-61AE1D69E6A3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,19 +11,19 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromColumns.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromColumns.names index 313c923ecb..8ff9f22184 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromColumns.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromColumns.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B17F2D7F-22DF-512D-BF2A-98890D337661}", + "base": "{B17F2D7F-22DF-512D-BF2A-98890D337661}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,43 +12,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector4: Column1", + "base": "DataInput_Vector4: Column1", "details": { "name": "Vector4: Column1" } }, { - "key": "DataInput_Vector4: Column2", + "base": "DataInput_Vector4: Column2", "details": { "name": "Vector4: Column2" } }, { - "key": "DataInput_Vector4: Column3", + "base": "DataInput_Vector4: Column3", "details": { "name": "Vector4: Column3" } }, { - "key": "DataInput_Vector4: Column4", + "base": "DataInput_Vector4: Column4", "details": { "name": "Vector4: Column4" } }, { - "key": "DataOutput_Result: Matrix4x4", + "base": "DataOutput_Result: Matrix4x4", "details": { "name": "Result: Matrix4x4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromDiagonal.names index 9e20e78471..60d8c29b6d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromDiagonal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4DD9115A-D1D0-53B3-8CC5-EA08EAA8BF13}", + "base": "{4DD9115A-D1D0-53B3-8CC5-EA08EAA8BF13}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromMatrix3x3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromMatrix3x3.names index 7366425c7f..634489bc27 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromMatrix3x3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromMatrix3x3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{ACD49054-0267-55C7-80E9-1513CAD9182F}", + "base": "{ACD49054-0267-55C7-80E9-1513CAD9182F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternion.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternion.names index af2093be55..abdd77ac84 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternion.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternion.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B522091B-B802-5B9C-97CB-B208F58FC535}", + "base": "{B522091B-B802-5B9C-97CB-B208F58FC535}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Quaternion: Source", + "base": "DataInput_Quaternion: Source", "details": { "name": "Quaternion: Source" } }, { - "key": "DataOutput_Result: Matrix4x4", + "base": "DataOutput_Result: Matrix4x4", "details": { "name": "Result: Matrix4x4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternionAndTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternionAndTranslation.names index c2720c5eaa..a922fb957d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternionAndTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternionAndTranslation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{18B8A477-A413-5477-ACA7-8A27C7C9A966}", + "base": "{18B8A477-A413-5477-ACA7-8A27C7C9A966}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Rotation", + "base": "DataInput_Rotation", "details": { "name": "Rotation" } }, { - "key": "DataInput_Translation", + "base": "DataInput_Translation", "details": { "name": "Translation" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationXDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationXDegrees.names index c4d2296372..092564c7c2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationXDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationXDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A50EB8F8-1BF9-5E03-9CC3-628CF58A3996}", + "base": "{A50EB8F8-1BF9-5E03-9CC3-628CF58A3996}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationYDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationYDegrees.names index 2d99cd99a0..1b1796ed2f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationYDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationYDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{14332A8E-425B-5A31-A8D3-EDFD96DE4BA5}", + "base": "{14332A8E-425B-5A31-A8D3-EDFD96DE4BA5}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Number: Degrees", + "base": "DataInput_Number: Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result: Matrix4x4", + "base": "DataOutput_Result: Matrix4x4", "details": { "name": "Matrix4x4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationZDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationZDegrees.names index 43287ab848..8b449f02a7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationZDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationZDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{99E6908F-AA83-571C-AC12-8DA12B112F79}", + "base": "{99E6908F-AA83-571C-AC12-8DA12B112F79}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRows.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRows.names index faefebca77..fba64d8d32 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRows.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRows.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B5272AB2-1312-5B55-A801-2A976B31665E}", + "base": "{B5272AB2-1312-5B55-A801-2A976B31665E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,43 +11,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Row1", + "base": "DataInput_Row1", "details": { "name": "Row 1" } }, { - "key": "DataInput_Row2", + "base": "DataInput_Row2", "details": { "name": "Row 2" } }, { - "key": "DataInput_Row3", + "base": "DataInput_Row3", "details": { "name": "Row 3" } }, { - "key": "DataInput_Row4", + "base": "DataInput_Row4", "details": { "name": "Row 4" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromScale.names index 8be2fed246..314a856dbe 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromScale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B49D6046-B959-53B1-88AD-E977038DB001}", + "base": "{B49D6046-B959-53B1-88AD-E977038DB001}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: Scale", + "base": "DataInput_Vector3: Scale", "details": { "name": "Vector3: Scale" } }, { - "key": "DataOutput_Result: Matrix4x4", + "base": "DataOutput_Result: Matrix4x4", "details": { "name": "Matrix4x4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTransform.names index 3966f964ee..a9e0062987 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTransform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{739E534B-CD9B-55DF-9757-89B0C379387F}", + "base": "{739E534B-CD9B-55DF-9757-89B0C379387F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Transform: Transform", + "base": "DataInput_Transform: Transform", "details": { "name": "Transform" } }, { - "key": "DataOutput_Result: Matrix4x4", + "base": "DataOutput_Result: Matrix4x4", "details": { "name": "Matrix4x4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTranslation.names index 0a6606a9c9..45af601aea 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTranslation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{35D8B012-2C19-5570-A606-4E644D01A9AD}", + "base": "{35D8B012-2C19-5570-A606-4E644D01A9AD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: Source", + "base": "DataInput_Vector3: Source", "details": { "name": "Translation" } }, { - "key": "DataOutput_Result: Matrix4x4", + "base": "DataOutput_Result: Matrix4x4", "details": { "name": "Matrix4x4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumn.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumn.names index 6c970c53e3..fbf0e8d1c2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumn.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumn.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{DE1D987E-8B96-5899-B663-CA4269A284DC}", + "base": "{DE1D987E-8B96-5899-B663-CA4269A284DC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Matrix4x4: Source", + "base": "DataInput_Matrix4x4: Source", "details": { "name": "Source" } }, { - "key": "DataInput_Number: Column", + "base": "DataInput_Number: Column", "details": { "name": "Column" } }, { - "key": "DataOutput_Result: Vector4", + "base": "DataOutput_Result: Vector4", "details": { "name": "Column" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumns.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumns.names index 8a4e1e477c..d9f7201afc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumns.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumns.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A2A41479-B90B-5615-A72E-AAB3A6D0332E}", + "base": "{A2A41479-B90B-5615-A72E-AAB3A6D0332E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,43 +12,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Matrix4x4: Source", + "base": "DataInput_Matrix4x4: Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Column1: Vector4", + "base": "DataOutput_Column1: Vector4", "details": { "name": "Column 1" } }, { - "key": "DataOutput_Column2: Vector4", + "base": "DataOutput_Column2: Vector4", "details": { "name": "Column 2" } }, { - "key": "DataOutput_Column3: Vector4", + "base": "DataOutput_Column3: Vector4", "details": { "name": "Column 3" } }, { - "key": "DataOutput_Column4: Vector4", + "base": "DataOutput_Column4: Vector4", "details": { "name": "Column 4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetDiagonal.names index 8777669eb2..e1b0efe63c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetDiagonal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{7ECE6E97-31F9-5455-8560-BB6578CD1F3D}", + "base": "{7ECE6E97-31F9-5455-8560-BB6578CD1F3D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetElement.names index fb047a7762..c5409e7d8f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetElement.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2677AF1E-FAC3-5360-96E4-CC3054372340}", + "base": "{2677AF1E-FAC3-5360-96E4-CC3054372340}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Row", + "base": "DataInput_Row", "details": { "name": "Row" } }, { - "key": "DataInput_Column", + "base": "DataInput_Column", "details": { "name": "Column" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRow.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRow.names index 9c2f1bd04c..09a624c5f3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRow.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRow.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6A153DA6-666E-59ED-93B7-5EE7F19EFC02}", + "base": "{6A153DA6-666E-59ED-93B7-5EE7F19EFC02}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Row", + "base": "DataInput_Row", "details": { "name": "Row" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRows.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRows.names index c0209cfa3c..c189d8f68a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRows.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRows.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{3A69C35B-287E-5F0F-A372-713B77B0CBC6}", + "base": "{3A69C35B-287E-5F0F-A372-713B77B0CBC6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,43 +11,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Row1", + "base": "DataOutput_Row1", "details": { "name": "Row1" } }, { - "key": "DataOutput_Row2", + "base": "DataOutput_Row2", "details": { "name": "Row2" } }, { - "key": "DataOutput_Row3", + "base": "DataOutput_Row3", "details": { "name": "Row3" } }, { - "key": "DataOutput_Row4", + "base": "DataOutput_Row4", "details": { "name": "Row4" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetTranslation.names index 97c74a96fa..b035564d83 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetTranslation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B71EAC83-D0E9-5E1C-B694-6665896F49FE}", + "base": "{B71EAC83-D0E9-5E1C-B694-6665896F49FE}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Invert.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Invert.names index 3746071075..89adc7d466 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Invert.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Invert.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4E82FDCE-50B3-5AFD-8E96-57E982B94D74}", + "base": "{4E82FDCE-50B3-5AFD-8E96-57E982B94D74}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsClose.names index 3dea7660d6..9bf12495f9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsClose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{52504B30-D3B4-5C09-80D6-3CAF47DAEB1E}", + "base": "{52504B30-D3B4-5C09-80D6-3CAF47DAEB1E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsFinite.names index f589f90a96..9fea9efe33 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{90FFB3EE-DBFF-57C7-8D10-136810B762F2}", + "base": "{90FFB3EE-DBFF-57C7-8D10-136810B762F2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_MultiplyByVector.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_MultiplyByVector.names index b68524d78b..79bb32bbf3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_MultiplyByVector.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_MultiplyByVector.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{CE8BA72E-E595-5653-9229-D77A0CB1BAFA}", + "base": "{CE8BA72E-E595-5653-9229-D77A0CB1BAFA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Vector", + "base": "DataInput_Vector", "details": { "name": "Vector" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_ToScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_ToScale.names index 1c06bcc228..eeae11fc39 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_ToScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_ToScale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2FB31ABF-7712-5C5F-BE1B-409D1D0AC120}", + "base": "{2FB31ABF-7712-5C5F-BE1B-409D1D0AC120}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Transpose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Transpose.names index 922ac1ee22..621a831e9a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Transpose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Transpose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8A4A10DF-A019-57A6-BF9D-493BBCA6B5E2}", + "base": "{8A4A10DF-A019-57A6-BF9D-493BBCA6B5E2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Zero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Zero.names index 9e2a4628df..3a208bbab5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Zero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Zero.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{9BCEE0D6-B0A0-5944-AC25-7A8111798704}", + "base": "{9BCEE0D6-B0A0-5944-AC25-7A8111798704}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,19 +11,19 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Add.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Add.names index d178d0f04b..9e3a0728d6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Add.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Add.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6C52B2D1-3526-4855-A217-5106D54F6B90}", + "base": "{6C52B2D1-3526-4855-A217-5106D54F6B90}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,33 +12,33 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after the arithmetic operation is done." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Divide.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Divide.names index 7d1a6635e4..7f4e449aad 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Divide.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Divide.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{7379D5B4-787B-4C46-9394-288F16E5BF3A}", + "base": "{7379D5B4-787B-4C46-9394-288F16E5BF3A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,33 +12,33 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after the arithmetic operation is done." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Multiply.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Multiply.names index 7c1f96ab53..57be0e3fb3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Multiply.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Multiply.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1BC9A5A9-9BF3-4DA7-A8F7-911254AEB243}", + "base": "{1BC9A5A9-9BF3-4DA7-A8F7-911254AEB243}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,33 +12,33 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after the arithmetic operation is done." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Subtract.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Subtract.names index 01b8a41cae..4fa1764fde 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Subtract.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathNumberDeprecated_Subtract.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A10AD4C7-B633-4A75-8210-1353A87441E4}", + "base": "{A10AD4C7-B633-4A75-8210-1353A87441E4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,33 +12,33 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after the arithmetic operation is done." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromAabb.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromAabb.names index 62c13d11c8..9280f009e8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromAabb.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromAabb.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{25B5779B-C1A0-5963-8F5F-1A7C59F675CD}", + "base": "{25B5779B-C1A0-5963-8F5F-1A7C59F675CD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromPositionRotationAndHalfLengths.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromPositionRotationAndHalfLengths.names index d59a1fdd33..bc125f2c9d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromPositionRotationAndHalfLengths.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromPositionRotationAndHalfLengths.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6F7A0335-C2D2-53A3-BF18-B3735DBFF8AA}", + "base": "{6F7A0335-C2D2-53A3-BF18-B3735DBFF8AA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Position", + "base": "DataInput_Position", "details": { "name": "Position" } }, { - "key": "DataInput_Rotation", + "base": "DataInput_Rotation", "details": { "name": "Rotation" } }, { - "key": "DataInput_HalfLengths", + "base": "DataInput_HalfLengths", "details": { "name": "Half Lengths" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisX.names index abfb3f23f5..5c2860e739 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisX.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{924A1027-ECC4-574D-808A-E4A4EB128552}", + "base": "{924A1027-ECC4-574D-808A-E4A4EB128552}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisY.names index 2bb5294f11..d8d58baa9b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisY.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{20C14ACD-F093-5E7D-8EA8-AD89ACDA8438}", + "base": "{20C14ACD-F093-5E7D-8EA8-AD89ACDA8438}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisZ.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisZ.names index 03363e3123..3f10c5cb1b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisZ.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisZ.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1A6BADCE-77F7-59F4-9F27-6C08B9D13374}", + "base": "{1A6BADCE-77F7-59F4-9F27-6C08B9D13374}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetPosition.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetPosition.names index d69e720586..8165f22a9c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetPosition.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetPosition.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{44BAE83D-1C90-5026-BD0D-65406C837A27}", + "base": "{44BAE83D-1C90-5026-BD0D-65406C837A27}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_IsFinite.names index 73e7d36a6e..6a60006d56 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{150329C4-45BF-5E9C-9358-41C648586F00}", + "base": "{150329C4-45BF-5E9C-9358-41C648586F00}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_DistanceToPoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_DistanceToPoint.names index 7d80966095..5353e147be 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_DistanceToPoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_DistanceToPoint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{7D49F3FC-A625-5166-9CF6-6F3757A56C14}", + "base": "{7D49F3FC-A625-5166-9CF6-6F3757A56C14}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Point", + "base": "DataInput_Point", "details": { "name": "Point" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromCoefficients.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromCoefficients.names index 808f50a2d1..8fc08635fd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromCoefficients.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromCoefficients.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C281152D-1617-52B6-BB82-8146F881CCA5}", + "base": "{C281152D-1617-52B6-BB82-8146F881CCA5}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,43 +11,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_C", + "base": "DataInput_C", "details": { "name": "C" } }, { - "key": "DataInput_D", + "base": "DataInput_D", "details": { "name": "D" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndDistance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndDistance.names index c4578ba333..52e5389e0f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndDistance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndDistance.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{85C2F69F-4E0D-5336-B1B1-29AE5A8339E2}", + "base": "{85C2F69F-4E0D-5336-B1B1-29AE5A8339E2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Normal", + "base": "DataInput_Normal", "details": { "name": "Normal" } }, { - "key": "DataInput_Distance", + "base": "DataInput_Distance", "details": { "name": "Distance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndPoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndPoint.names index e590504d18..3c33889597 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndPoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndPoint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{ED542A26-BBB3-5747-A40C-2CD08C369C54}", + "base": "{ED542A26-BBB3-5747-A40C-2CD08C369C54}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Normal", + "base": "DataInput_Normal", "details": { "name": "Normal" } }, { - "key": "DataInput_Point", + "base": "DataInput_Point", "details": { "name": "Point" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetDistance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetDistance.names index d097209d63..5673a596f7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetDistance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetDistance.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5A3021D3-46AC-5751-B057-7B4E476417F3}", + "base": "{5A3021D3-46AC-5751-B057-7B4E476417F3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetNormal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetNormal.names index b149b8451a..4db582ee90 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetNormal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetNormal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{76467598-DB87-59DD-8B65-B7636880EAB4}", + "base": "{76467598-DB87-59DD-8B65-B7636880EAB4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetPlaneEquationCoefficients.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetPlaneEquationCoefficients.names index 2a904695e9..36c6e35769 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetPlaneEquationCoefficients.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetPlaneEquationCoefficients.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{9F5030EF-15D1-5AEC-988E-8BE2D9C6DD64}", + "base": "{9F5030EF-15D1-5AEC-988E-8BE2D9C6DD64}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,43 +11,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_A", + "base": "DataOutput_A", "details": { "name": "A" } }, { - "key": "DataOutput_B", + "base": "DataOutput_B", "details": { "name": "B" } }, { - "key": "DataOutput_C", + "base": "DataOutput_C", "details": { "name": "C" } }, { - "key": "DataOutput_D", + "base": "DataOutput_D", "details": { "name": "D" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_IsFinite.names index efdd4a332e..6bf24dfac5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{AB336D86-5967-568C-9E2E-D678BAE4DFAC}", + "base": "{AB336D86-5967-568C-9E2E-D678BAE4DFAC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Project.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Project.names index ec23385c33..8ff3251e3b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Project.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Project.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BE7F52C0-3FEA-5C78-BAB1-41A8BFEB38EC}", + "base": "{BE7F52C0-3FEA-5C78-BAB1-41A8BFEB38EC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Point", + "base": "DataInput_Point", "details": { "name": "Point" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Transform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Transform.names index f075b312ad..d06be76f8c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Transform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Transform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{43FB92F5-CBC4-553E-982B-714EA2226D42}", + "base": "{43FB92F5-CBC4-553E-982B-714EA2226D42}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Transform", + "base": "DataInput_Transform", "details": { "name": "Transform" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Conjugate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Conjugate.names index 204cd35042..13f58a276b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Conjugate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Conjugate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1328993D-4413-5E46-9116-3AA5C25E97D2}", + "base": "{1328993D-4413-5E46-9116-3AA5C25E97D2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ConvertTransformToRotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ConvertTransformToRotation.names index 3d0d0823b1..bdf1980570 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ConvertTransformToRotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ConvertTransformToRotation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{10B3E787-BC20-5317-9553-647D40D79DCD}", + "base": "{10B3E787-BC20-5317-9553-647D40D79DCD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,25 +10,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Transform", + "base": "DataInput_Transform", "details": { "name": "Transform" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_CreateFromEulerAngles.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_CreateFromEulerAngles.names index 69cdb0f4b9..3ea8425186 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_CreateFromEulerAngles.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_CreateFromEulerAngles.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{82FB60FB-2417-5BDC-ADF7-9C08DE88E793}", + "base": "{82FB60FB-2417-5BDC-ADF7-9C08DE88E793}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Pitch", + "base": "DataInput_Pitch", "details": { "name": "Pitch" } }, { - "key": "DataInput_Roll", + "base": "DataInput_Roll", "details": { "name": "Roll" } }, { - "key": "DataInput_Yaw", + "base": "DataInput_Yaw", "details": { "name": "Yaw" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Dot.names index 26fe0c1b79..dce76a8cc0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Dot.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{46366DEB-4F16-54AF-A618-073E0E2C1DA4}", + "base": "{46366DEB-4F16-54AF-A618-073E0E2C1DA4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromAxisAngleDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromAxisAngleDegrees.names index 9851c3fd8f..2007847335 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromAxisAngleDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromAxisAngleDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6AEAAC03-A8D7-5C29-9F23-07FF59EE55D7}", + "base": "{6AEAAC03-A8D7-5C29-9F23-07FF59EE55D7}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Axis", + "base": "DataInput_Axis", "details": { "name": "Axis" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix3x3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix3x3.names index 906014820e..646714b48d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix3x3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix3x3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{59C4651F-A5E7-59FD-81FE-D7BD07B36346}", + "base": "{59C4651F-A5E7-59FD-81FE-D7BD07B36346}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix4x4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix4x4.names index cbfd1dc1ea..b6b38f7297 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix4x4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix4x4.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B2C7B9DD-C9DD-5971-AA76-95603BED9BD8}", + "base": "{B2C7B9DD-C9DD-5971-AA76-95603BED9BD8}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromTransform.names index 3a708bac08..9fb08ffa2b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromTransform.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2F3E079E-23F9-5BC4-9B1A-DD2FAFBF921F}", + "base": "{2F3E079E-23F9-5BC4-9B1A-DD2FAFBF921F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_InvertFull.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_InvertFull.names index fc4ab2f1c7..ceeebae083 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_InvertFull.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_InvertFull.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{25150C46-3ECA-596A-8643-DB9B143D17C9}", + "base": "{25150C46-3ECA-596A-8643-DB9B143D17C9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsClose.names index 4af70867e8..302acb0e94 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsClose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{7CF70E06-039B-5DFB-BA6D-A94DBB010A91}", + "base": "{7CF70E06-039B-5DFB-BA6D-A94DBB010A91}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsFinite.names index 0ccd7a1ce7..deda4ab105 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0FF1A082-1200-57C4-8CE6-A17844BEBD1A}", + "base": "{0FF1A082-1200-57C4-8CE6-A17844BEBD1A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsIdentity.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsIdentity.names index 62655f407c..b4cda49248 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsIdentity.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsIdentity.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6D6D359A-BD00-5ADA-B634-C4F6B0949BFF}", + "base": "{6D6D359A-BD00-5ADA-B634-C4F6B0949BFF}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsZero.names index 9ab1882a09..99bde6bd2b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsZero.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F7805CC3-4A0A-58BD-968F-5D1CAA4D8215}", + "base": "{F7805CC3-4A0A-58BD-968F-5D1CAA4D8215}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthReciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthReciprocal.names index 772ab4f4d6..591b61fb3a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthReciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthReciprocal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4CDE86F1-8ABD-5F13-8BFE-622728F845DC}", + "base": "{4CDE86F1-8ABD-5F13-8BFE-622728F845DC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthSquared.names index 8890491e60..1c50bdc5e6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthSquared.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{FC266E04-338B-57CE-A529-28056AB3AB43}", + "base": "{FC266E04-338B-57CE-A529-28056AB3AB43}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Lerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Lerp.names index 16925c829a..11bb5d0816 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Lerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Lerp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A3B1E26D-BF69-5009-A3B4-868DBE3106A3}", + "base": "{A3B1E26D-BF69-5009-A3B4-868DBE3106A3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_T", + "base": "DataInput_T", "details": { "name": "T" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_MultiplyByNumber.names index 9c8fdd2ada..d632a64250 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_MultiplyByNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{36ECEF91-815A-5D40-B21F-0CAA4D6DAD53}", + "base": "{36ECEF91-815A-5D40-B21F-0CAA4D6DAD53}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Multiplier", + "base": "DataInput_Multiplier", "details": { "name": "Multiplier" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Negate.names index ac5912acc4..effceed57e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Negate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0E9A2E40-9EEE-5D46-92BD-60E20F99E96E}", + "base": "{0E9A2E40-9EEE-5D46-92BD-60E20F99E96E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Normalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Normalize.names index c5773851d4..83adfd8e38 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Normalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Normalize.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{215978F2-1B5F-597D-BE5D-C01A1E77F2BF}", + "base": "{215978F2-1B5F-597D-BE5D-C01A1E77F2BF}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotateVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotateVector3.names index cbd26e5162..a18c86703c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotateVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotateVector3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{56C01595-FE08-54FC-9668-D203D59F506D}", + "base": "{56C01595-FE08-54FC-9668-D203D59F506D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Quaternion", + "base": "DataInput_Quaternion", "details": { "name": "Quaternion" } }, { - "key": "DataInput_Vector", + "base": "DataInput_Vector", "details": { "name": "Vector" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationXDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationXDegrees.names index 4eb971a203..ad554e2364 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationXDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationXDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{261E424C-4241-5777-8742-21945C69FD29}", + "base": "{261E424C-4241-5777-8742-21945C69FD29}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationYDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationYDegrees.names index aada946ccc..047af94ec0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationYDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationYDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{66AC039B-8D0D-5E4C-A4EA-20F767C4EAF5}", + "base": "{66AC039B-8D0D-5E4C-A4EA-20F767C4EAF5}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationZDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationZDegrees.names index 7a72aa9330..abd872aa1c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationZDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationZDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1373DA97-B94D-5DBB-9F0C-175CAE46851A}", + "base": "{1373DA97-B94D-5DBB-9F0C-175CAE46851A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ShortestArc.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ShortestArc.names index deb69f734f..7bed39e779 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ShortestArc.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ShortestArc.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{7809B038-3F50-533D-8AEF-35CDBDDFCA71}", + "base": "{7809B038-3F50-533D-8AEF-35CDBDDFCA71}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Slerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Slerp.names index a1d1dfa30b..f5a9f2333c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Slerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Slerp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{92A204FE-A6E2-5EB7-B2A2-F782DBA8C1C3}", + "base": "{92A204FE-A6E2-5EB7-B2A2-F782DBA8C1C3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_T", + "base": "DataInput_T", "details": { "name": "T" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Squad.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Squad.names index c9efc06f69..2c0915cb83 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Squad.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Squad.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E7275C69-D728-5468-9402-C4FBA1ADDA97}", + "base": "{E7275C69-D728-5468-9402-C4FBA1ADDA97}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,49 +11,49 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_In", + "base": "DataInput_In", "details": { "name": "In" } }, { - "key": "DataInput_Out", + "base": "DataInput_Out", "details": { "name": "Out" } }, { - "key": "DataInput_T", + "base": "DataInput_T", "details": { "name": "T" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ToAngleDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ToAngleDegrees.names index 11efc83cb5..cdfeaaa8e7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ToAngleDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ToAngleDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D3471394-97F1-5A37-82E0-F570B882F9C9}", + "base": "{D3471394-97F1-5A37-82E0-F570B882F9C9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomColor.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomColor.names index 2e70823599..74c0f7e2e3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomColor.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomColor.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{66072FDF-E318-5A40-B0C1-FD9EE0F59D7B}", + "base": "{66072FDF-E318-5A40-B0C1-FD9EE0F59D7B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomGrayscale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomGrayscale.names index 15bb0a397c..3fa603ca9a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomGrayscale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomGrayscale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E16EC7BB-A046-5CD7-B26C-0A75358A37F2}", + "base": "{E16EC7BB-A046-5CD7-B26C-0A75358A37F2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomInteger.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomInteger.names index 4fad43953b..0e3131a398 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomInteger.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomInteger.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{48BF5246-995E-5EFD-B541-F468937D2423}", + "base": "{48BF5246-995E-5EFD-B541-F468937D2423}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomNumber.names index 3dfe2b70c6..f2208525d2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{898C7B53-2829-58ED-A053-1641A2BC14E2}", + "base": "{898C7B53-2829-58ED-A053-1641A2BC14E2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInArc.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInArc.names index 76cc80bb9a..fb23ddf7c2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInArc.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInArc.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{3A668745-A312-5849-A2D3-AEF533F2CE3D}", + "base": "{3A668745-A312-5849-A2D3-AEF533F2CE3D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,49 +11,49 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Origin", + "base": "DataInput_Origin", "details": { "name": "Origin" } }, { - "key": "DataInput_Direction", + "base": "DataInput_Direction", "details": { "name": "Direction" } }, { - "key": "DataInput_Normal", + "base": "DataInput_Normal", "details": { "name": "Normal" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataInput_Angle", + "base": "DataInput_Angle", "details": { "name": "Angle" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInBox.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInBox.names index 3e66186f01..a5cd2fdeac 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInBox.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInBox.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8F7532AC-DABD-5EE6-8D84-A063032A82D4}", + "base": "{8F7532AC-DABD-5EE6-8D84-A063032A82D4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Dimensions", + "base": "DataInput_Dimensions", "details": { "name": "Dimensions" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCircle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCircle.names index fa9aa601c7..e4dbeb4dd3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCircle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCircle.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{90F4E470-10AB-5D78-9B20-100132F0BEA9}", + "base": "{90F4E470-10AB-5D78-9B20-100132F0BEA9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCone.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCone.names index 7b48818c3a..4c7270d0f4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCone.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCone.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{00464520-3FAA-5725-BE01-4F13A50E430F}", + "base": "{00464520-3FAA-5725-BE01-4F13A50E430F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataInput_Angle", + "base": "DataInput_Angle", "details": { "name": "Angle" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCylinder.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCylinder.names index 4f383fc218..92dcefe8c7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCylinder.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCylinder.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{DE205B79-32D5-5FA9-868A-442CE0388F7F}", + "base": "{DE205B79-32D5-5FA9-868A-442CE0388F7F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataInput_Height", + "base": "DataInput_Height", "details": { "name": "Height" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInEllipsoid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInEllipsoid.names index 0097ccc4a5..21d3ca2f96 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInEllipsoid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInEllipsoid.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{3234ADB9-4B1E-594B-8AF6-EC857CCA1241}", + "base": "{3234ADB9-4B1E-594B-8AF6-EC857CCA1241}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Dimensions", + "base": "DataInput_Dimensions", "details": { "name": "Dimensions" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSphere.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSphere.names index ef39e9d0bf..60d4a9cbd8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSphere.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSphere.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5C87299A-E9AF-591D-8E20-4A1B8F4A92CD}", + "base": "{5C87299A-E9AF-591D-8E20-4A1B8F4A92CD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSquare.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSquare.names index 9793721ef9..82d6f6e156 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSquare.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSquare.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4CF31307-D138-5021-A5AE-F352C95DC212}", + "base": "{4CF31307-D138-5021-A5AE-F352C95DC212}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Dimensions", + "base": "DataInput_Dimensions", "details": { "name": "Dimensions" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInWedge.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInWedge.names index 89f9558c38..401c3afcb4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInWedge.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInWedge.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A2D614BC-1636-5F54-868A-BF5544910967}", + "base": "{A2D614BC-1636-5F54-868A-BF5544910967}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,55 +11,55 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Origin", + "base": "DataInput_Origin", "details": { "name": "Origin" } }, { - "key": "DataInput_Direction", + "base": "DataInput_Direction", "details": { "name": "Direction" } }, { - "key": "DataInput_Normal", + "base": "DataInput_Normal", "details": { "name": "Normal" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataInput_Height", + "base": "DataInput_Height", "details": { "name": "Height" } }, { - "key": "DataInput_Angle", + "base": "DataInput_Angle", "details": { "name": "Angle" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnCircle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnCircle.names index 428cd58136..39433c405e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnCircle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnCircle.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D726B72F-9300-5D21-BE2C-8CB089BFDBA3}", + "base": "{D726B72F-9300-5D21-BE2C-8CB089BFDBA3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnSphere.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnSphere.names index f648814dfc..6e54bb7d72 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnSphere.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnSphere.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{7DFA3F08-B554-550A-93F8-4D7CBAA775E9}", + "base": "{7DFA3F08-B554-550A-93F8-4D7CBAA775E9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomQuaternion.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomQuaternion.names index 161d7552d4..ccae17450c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomQuaternion.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomQuaternion.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E9902EB1-82B9-5EF2-B7B6-51BAFECA0B91}", + "base": "{E9902EB1-82B9-5EF2-B7B6-51BAFECA0B91}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector2.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector2.names index c27266cdcf..e1b9340392 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector2.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector2.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4DC88D65-16B5-525C-AA9A-5C19F2F9165C}", + "base": "{4DC88D65-16B5-525C-AA9A-5C19F2F9165C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,19 +11,19 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector3.names index 2a7ca79279..06990bde99 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D0A2F62C-EB98-51CC-A482-80F9623CE128}", + "base": "{D0A2F62C-EB98-51CC-A482-80F9623CE128}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,19 +11,19 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector2.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector2.names index b185b25309..0128628cb4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector2.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector2.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{00E27150-6B42-5C54-B600-70051B106C82}", + "base": "{00E27150-6B42-5C54-B600-70051B106C82}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector3.names index 3be02e9d63..d77f6e96c6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0A1CA315-EFAB-50DC-8C61-2C9763D25E31}", + "base": "{0A1CA315-EFAB-50DC-8C61-2C9763D25E31}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector4.names index 060a2aa54c..df7bd9384f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector4.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1C8987BF-7EA0-58CF-A4CC-2A998C9ADA68}", + "base": "{1C8987BF-7EA0-58CF-A4CC-2A998C9ADA68}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3.names index 6467b86b65..70826cd581 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BC6D613C-CBE5-5B01-9207-16D0B158799D}", + "base": "{BC6D613C-CBE5-5B01-9207-16D0B158799D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3AndTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3AndTranslation.names index a982f27f00..a64be79b93 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3AndTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3AndTranslation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D2321D1F-C3B8-516E-AFE2-3A536A89BCAB}", + "base": "{D2321D1F-C3B8-516E-AFE2-3A536A89BCAB}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Matrix", + "base": "DataInput_Matrix", "details": { "name": "Matrix" } }, { - "key": "DataInput_Translation", + "base": "DataInput_Translation", "details": { "name": "Translation" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotation.names index 8f9e25ac73..db1f5d7706 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B5BCF19E-2EF2-584E-B4B6-0FC7E9FEE99B}", + "base": "{B5BCF19E-2EF2-584E-B4B6-0FC7E9FEE99B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotationAndTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotationAndTranslation.names index 86af19524d..0a44bbe29f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotationAndTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotationAndTranslation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C2A304B1-9D48-5A2A-BCEE-69BCD72379E3}", + "base": "{C2A304B1-9D48-5A2A-BCEE-69BCD72379E3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Rotation", + "base": "DataInput_Rotation", "details": { "name": "Rotation" } }, { - "key": "DataInput_Translation", + "base": "DataInput_Translation", "details": { "name": "Translation" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromScale.names index c7b3729287..071ead3598 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromScale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5DAB6076-4F49-5163-9E3C-CE3DF59E710C}", + "base": "{5DAB6076-4F49-5163-9E3C-CE3DF59E710C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromTranslation.names index 9de04cbca8..391dfd9bee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromTranslation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{DFCF0A6F-9907-52B1-BBF3-632CB929C1B1}", + "base": "{DFCF0A6F-9907-52B1-BBF3-632CB929C1B1}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Translation", + "base": "DataInput_Translation", "details": { "name": "Translation" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetForward.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetForward.names index 60ca484883..9356423bc4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetForward.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetForward.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1D27BC5A-44D6-526E-B1EC-4B080B750ED1}", + "base": "{1D27BC5A-44D6-526E-B1EC-4B080B750ED1}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetRight.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetRight.names index 9c9105301e..8723a54349 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetRight.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetRight.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{78E62FB8-7CD0-5E4D-BA31-9E62867C4F6A}", + "base": "{78E62FB8-7CD0-5E4D-BA31-9E62867C4F6A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetTranslation.names index 657ae89af1..276db70fa1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetTranslation.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BA0C1841-5632-5329-BCD3-CDF12B1D8682}", + "base": "{BA0C1841-5632-5329-BCD3-CDF12B1D8682}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetUp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetUp.names index 9eae139080..cf3dbd3e8c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetUp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetUp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0351A1F0-7F51-58C2-9ED4-F617B897A523}", + "base": "{0351A1F0-7F51-58C2-9ED4-F617B897A523}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsClose.names index 47fdde6039..65af93c3d0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsClose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D58A9E0D-5C09-56AB-8D8C-C9C501BA62A3}", + "base": "{D58A9E0D-5C09-56AB-8D8C-C9C501BA62A3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsFinite.names index 5a820ec8aa..f98506dd62 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BFF80CFD-5A54-5ADA-83FF-3849FD4E675D}", + "base": "{BFF80CFD-5A54-5ADA-83FF-3849FD4E675D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsOrthogonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsOrthogonal.names index 77f686a375..f4dd80a4a2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsOrthogonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsOrthogonal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D6B704EB-62A7-5CEB-B715-4CD402E1BAF9}", + "base": "{D6B704EB-62A7-5CEB-B715-4CD402E1BAF9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByUniformScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByUniformScale.names index a898617aa1..f8bcbc41a7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByUniformScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByUniformScale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{493F14D7-FC42-5544-9BA1-400762EB6D41}", + "base": "{493F14D7-FC42-5544-9BA1-400762EB6D41}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector3.names index e227c1ef2b..d51e766840 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector3.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{00EEE23E-7FAC-5DE4-A3B1-9AC4DBD40AE4}", + "base": "{00EEE23E-7FAC-5DE4-A3B1-9AC4DBD40AE4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Multiplier", + "base": "DataInput_Multiplier", "details": { "name": "Multiplier" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector4.names index 64820d14e1..2e11891d0f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector4.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{FB87C32E-BB06-5499-B210-4EE109C419DC}", + "base": "{FB87C32E-BB06-5499-B210-4EE109C419DC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Multiplier", + "base": "DataInput_Multiplier", "details": { "name": "Multiplier" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_Orthogonalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_Orthogonalize.names index 4e803bc6b7..94598629b6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_Orthogonalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_Orthogonalize.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0CF20F04-C784-546B-80FB-0A705BB3D25A}", + "base": "{0CF20F04-C784-546B-80FB-0A705BB3D25A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationXDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationXDegrees.names index d50b4f99e4..353eb26615 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationXDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationXDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{93283EA1-ADED-53B8-B3BE-A7B933918286}", + "base": "{93283EA1-ADED-53B8-B3BE-A7B933918286}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationYDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationYDegrees.names index 2da86bdade..d5f5469593 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationYDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationYDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{380DB52D-3BEB-553C-B903-F5824AE1A0C6}", + "base": "{380DB52D-3BEB-553C-B903-F5824AE1A0C6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationZDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationZDegrees.names index 75a0e7d1ec..8431b15578 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationZDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationZDegrees.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{70D7DC40-B9AB-55F6-8E80-A9F8EA9BE964}", + "base": "{70D7DC40-B9AB-55F6-8E80-A9F8EA9BE964}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Degrees", + "base": "DataInput_Degrees", "details": { "name": "Degrees" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_ToScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_ToScale.names index 3e9da773e0..531f0b1b38 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_ToScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_ToScale.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{AC6712AA-0494-5879-B7F8-4B04352924DE}", + "base": "{AC6712AA-0494-5879-B7F8-4B04352924DE}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Absolute.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Absolute.names index 8eb626b066..bd72341c6d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Absolute.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Absolute.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{97858B5F-57A8-5DE4-BA1D-ABE2504DE79D}", + "base": "{97858B5F-57A8-5DE4-BA1D-ABE2504DE79D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Angle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Angle.names index d70cb4b898..7efe070c80 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Angle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Angle.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BAA9A44B-EC0E-536B-B64A-EA652596F40A}", + "base": "{BAA9A44B-EC0E-536B-B64A-EA652596F40A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Angle", + "base": "DataInput_Angle", "details": { "name": "Angle" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Clamp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Clamp.names index 970b1647a8..2a4f580d95 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Clamp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Clamp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{636D27FE-E3E3-5983-A364-9147CD42F2D2}", + "base": "{636D27FE-E3E3-5983-A364-9147CD42F2D2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DirectionTo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DirectionTo.names index 53b667f5d4..58ef596560 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DirectionTo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DirectionTo.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{ECDE911F-56B4-5D91-86A6-32C4F9461305}", + "base": "{ECDE911F-56B4-5D91-86A6-32C4F9461305}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Distance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Distance.names index 81c7caac36..5d6b79ef69 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Distance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Distance.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{38BE4B13-7B8C-5FCF-9313-74E6C9C3BE06}", + "base": "{38BE4B13-7B8C-5FCF-9313-74E6C9C3BE06}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DistanceSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DistanceSquared.names index d8282d40d0..cc12b409ee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DistanceSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DistanceSquared.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1CBF4712-4BB5-5FB9-BC5F-C34E0C076334}", + "base": "{1CBF4712-4BB5-5FB9-BC5F-C34E0C076334}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Dot.names index 21a9836da5..19db3eb635 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Dot.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{9F91A118-D85A-5357-ACE3-92A78AA2C4FC}", + "base": "{9F91A118-D85A-5357-ACE3-92A78AA2C4FC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_FromValues.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_FromValues.names index 1825d3b69f..d68a9ffc30 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_FromValues.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_FromValues.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{10158AAB-73B0-5863-A7CA-11616E05CBE4}", + "base": "{10158AAB-73B0-5863-A7CA-11616E05CBE4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_X", + "base": "DataInput_X", "details": { "name": "X" } }, { - "key": "DataInput_Y", + "base": "DataInput_Y", "details": { "name": "Y" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_GetElement.names index 4abdac379a..bcd119556c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_GetElement.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4843E512-0335-5411-A548-8AC8245B6845}", + "base": "{4843E512-0335-5411-A548-8AC8245B6845}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Index", + "base": "DataInput_Index", "details": { "name": "Index" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsClose.names index 30d0f9eab6..4146bc08de 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsClose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{82F6EBA6-BBF5-5063-84E6-8C4BCEF7E4A3}", + "base": "{82F6EBA6-BBF5-5063-84E6-8C4BCEF7E4A3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsFinite.names index d170de9066..9b45bb21b7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{3D6F65B5-020D-55EE-B807-C54D10DDC647}", + "base": "{3D6F65B5-020D-55EE-B807-C54D10DDC647}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsNormalized.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsNormalized.names index aecdcde55d..151baa29b0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsNormalized.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsNormalized.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{AD815735-ED31-535E-BEEF-471259B271E3}", + "base": "{AD815735-ED31-535E-BEEF-471259B271E3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsZero.names index d0869fffd0..3f183cfe56 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsZero.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A8F6E886-BFCC-5546-8516-1564C1A56D18}", + "base": "{A8F6E886-BFCC-5546-8516-1564C1A56D18}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Length.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Length.names index 99e7922e75..cb76ac347b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Length.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Length.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{AD0A51F8-F87B-504E-84F0-8C60927D3798}", + "base": "{AD0A51F8-F87B-504E-84F0-8C60927D3798}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_LengthSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_LengthSquared.names index 6ff64af10f..112d82d5e3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_LengthSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_LengthSquared.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{EF19330A-6FF7-5B8C-B029-C429525A3223}", + "base": "{EF19330A-6FF7-5B8C-B029-C429525A3223}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Lerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Lerp.names index 78bf3b0d6f..49711526b7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Lerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Lerp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{978B5227-CE5B-501A-8EA8-54DE40DFF558}", + "base": "{978B5227-CE5B-501A-8EA8-54DE40DFF558}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_T", + "base": "DataInput_T", "details": { "name": "T" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Max.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Max.names index 6b906d80bf..d6ff44c21c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Max.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Max.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5CA4EE87-53A9-514C-8278-F311F447B7B1}", + "base": "{5CA4EE87-53A9-514C-8278-F311F447B7B1}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Min.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Min.names index bc50faf138..5563f69c00 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Min.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Min.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{894F73E5-0447-5627-9B16-FDD649DA7A42}", + "base": "{894F73E5-0447-5627-9B16-FDD649DA7A42}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_MultiplyByNumber.names index 14e227c51d..f63137d25f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_MultiplyByNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4FA0D3F0-A95B-5DEB-B46D-E9D08C43D55E}", + "base": "{4FA0D3F0-A95B-5DEB-B46D-E9D08C43D55E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Multiplier", + "base": "DataInput_Multiplier", "details": { "name": "Multiplier" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Negate.names index d0501ee1b3..1eb48cf3a5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Negate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E4C28D60-B4AA-555A-BE46-DB4D7196C532}", + "base": "{E4C28D60-B4AA-555A-BE46-DB4D7196C532}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Normalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Normalize.names index a8c9e0ef3b..ae4ee365ef 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Normalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Normalize.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E019ADBA-0793-5653-A4BD-446F41FED0BC}", + "base": "{E019ADBA-0793-5653-A4BD-446F41FED0BC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Project.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Project.names index e6a60b35aa..e6bd531852 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Project.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Project.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F4826124-F3C7-59B5-B92B-4CD00AADFED3}", + "base": "{F4826124-F3C7-59B5-B92B-4CD00AADFED3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetX.names index 001c062eb8..4a96a8154e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetX.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6FA3AADA-3B14-5C7C-8F7C-75818C3AEC94}", + "base": "{6FA3AADA-3B14-5C7C-8F7C-75818C3AEC94}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_X", + "base": "DataInput_X", "details": { "name": "X" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetY.names index cb0655fafc..bdde07b53c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetY.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2969A368-000E-5723-8821-1B97790917E7}", + "base": "{2969A368-000E-5723-8821-1B97790917E7}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Y", + "base": "DataInput_Y", "details": { "name": "Y" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Slerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Slerp.names index d6e29b7a5f..26b5579174 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Slerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Slerp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6071D322-86AF-5900-B073-33E74146525B}", + "base": "{6071D322-86AF-5900-B073-33E74146525B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_T", + "base": "DataInput_T", "details": { "name": "T" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_ToPerpendicular.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_ToPerpendicular.names index 5ea65c816c..f78ec6a232 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_ToPerpendicular.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_ToPerpendicular.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{78889490-B826-5682-9464-117DB8083AF4}", + "base": "{78889490-B826-5682-9464-117DB8083AF4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Absolute.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Absolute.names index dbaeb967a2..a20c7413d7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Absolute.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Absolute.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8C3D49FD-9913-5104-B67B-2DFC9223E08B}", + "base": "{8C3D49FD-9913-5104-B67B-2DFC9223E08B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_BuildTangentBasis.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_BuildTangentBasis.names index 05aec1da52..8f08fb24c2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_BuildTangentBasis.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_BuildTangentBasis.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{07875A9A-81DF-59BA-95E8-3BB5D3E7CF0E}", + "base": "{07875A9A-81DF-59BA-95E8-3BB5D3E7CF0E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Normal", + "base": "DataInput_Normal", "details": { "name": "Normal" } }, { - "key": "DataOutput_Tangent", + "base": "DataOutput_Tangent", "details": { "name": "Tangent" } }, { - "key": "DataOutput_Bitangent", + "base": "DataOutput_Bitangent", "details": { "name": "Bitangent" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Clamp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Clamp.names index 28e5747493..15109364fd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Clamp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Clamp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F14339D1-DB1C-584F-A91E-2D10D29255DF}", + "base": "{F14339D1-DB1C-584F-A91E-2D10D29255DF}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Min", + "base": "DataInput_Min", "details": { "name": "Min" } }, { - "key": "DataInput_Max", + "base": "DataInput_Max", "details": { "name": "Max" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Cross.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Cross.names index 64f6d9f992..a23b88920e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Cross.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Cross.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8645F3FA-D1BE-59A2-B183-19FEA198101D}", + "base": "{8645F3FA-D1BE-59A2-B183-19FEA198101D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DirectionTo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DirectionTo.names index b0e542b842..5071b5d52c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DirectionTo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DirectionTo.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{CA0FE782-4D45-5CFD-94D4-88CC687429FB}", + "base": "{CA0FE782-4D45-5CFD-94D4-88CC687429FB}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Distance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Distance.names index 1c8df2ccc5..3d38a8d9d1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Distance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Distance.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2326F5E9-022F-5754-9A65-8E4BBD712A5A}", + "base": "{2326F5E9-022F-5754-9A65-8E4BBD712A5A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DistanceSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DistanceSquared.names index 5e33d91136..56f45fbec4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DistanceSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DistanceSquared.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{920C0CA6-3393-5AC7-805E-09D52E134ED4}", + "base": "{920C0CA6-3393-5AC7-805E-09D52E134ED4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Dot.names index 06a80b4078..c86dac30a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Dot.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{233F747E-7E53-5F9F-8355-EBF96FAAAEE4}", + "base": "{233F747E-7E53-5F9F-8355-EBF96FAAAEE4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_FromValues.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_FromValues.names index 42a47d5fcf..10831f85ed 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_FromValues.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_FromValues.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A3F601EF-4E3C-5852-ADE9-D3F8FA9D571D}", + "base": "{A3F601EF-4E3C-5852-ADE9-D3F8FA9D571D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_X", + "base": "DataInput_X", "details": { "name": "X" } }, { - "key": "DataInput_Y", + "base": "DataInput_Y", "details": { "name": "Y" } }, { - "key": "DataInput_Z", + "base": "DataInput_Z", "details": { "name": "Z" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_GetElement.names index 89d4c218e4..ae6ce083ac 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_GetElement.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E009C313-15F5-5B1F-99F0-8C83555BA8E1}", + "base": "{E009C313-15F5-5B1F-99F0-8C83555BA8E1}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Index", + "base": "DataInput_Index", "details": { "name": "Index" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsClose.names index 2eef451673..5e5c09923c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsClose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4C54A897-39D7-5612-AAA6-B5CC25D65CE2}", + "base": "{4C54A897-39D7-5612-AAA6-B5CC25D65CE2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsFinite.names index c1e14e8db0..e527e8bf35 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{7C09FF34-0608-57A9-8CEE-66DCA0485F08}", + "base": "{7C09FF34-0608-57A9-8CEE-66DCA0485F08}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsNormalized.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsNormalized.names index 35f2e6421a..e9f64e84fb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsNormalized.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsNormalized.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{7C895C3A-972B-5CF4-9F1D-62C2A9BBBEAD}", + "base": "{7C895C3A-972B-5CF4-9F1D-62C2A9BBBEAD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsPerpendicular.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsPerpendicular.names index 82c3388632..c4adec6436 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsPerpendicular.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsPerpendicular.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{775DA8B7-881F-55AF-911B-9CD28DC5F9B0}", + "base": "{775DA8B7-881F-55AF-911B-9CD28DC5F9B0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsZero.names index 0d80b3395c..f65485eb78 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsZero.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{282F32C7-5806-5C1A-BA31-E14E37913599}", + "base": "{282F32C7-5806-5C1A-BA31-E14E37913599}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Length.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Length.names index 4c23c9cbbd..6861dab138 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Length.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Length.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{899CC124-10D8-5081-BD8E-00BD2B0DAD2B}", + "base": "{899CC124-10D8-5081-BD8E-00BD2B0DAD2B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthReciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthReciprocal.names index be22489f6d..12ded27f2e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthReciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthReciprocal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{299657FE-6A44-52DA-919E-3F266EFC7535}", + "base": "{299657FE-6A44-52DA-919E-3F266EFC7535}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthSquared.names index 4c6d79d1e5..9a97dbb263 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthSquared.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{12A6C1D4-5C8A-5FFB-B7BC-E5E983DA72CC}", + "base": "{12A6C1D4-5C8A-5FFB-B7BC-E5E983DA72CC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Lerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Lerp.names index 5d0b9792c9..c320ce31a5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Lerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Lerp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{722A4327-0D64-5ADF-BCDD-CDCF7EDDD16D}", + "base": "{722A4327-0D64-5ADF-BCDD-CDCF7EDDD16D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_T", + "base": "DataInput_T", "details": { "name": "T" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Max.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Max.names index 38acf91419..d429e45202 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Max.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Max.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C1E9BE9C-DD4E-5AD5-BFBD-23A012619BD3}", + "base": "{C1E9BE9C-DD4E-5AD5-BFBD-23A012619BD3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Min.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Min.names index 1a47a31834..eef2baf012 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Min.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Min.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{343EA674-C05F-5803-BB86-C6D26C3F6D89}", + "base": "{343EA674-C05F-5803-BB86-C6D26C3F6D89}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_MultiplyByNumber.names index 95e2710e33..9637449b22 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_MultiplyByNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B1CAAC2D-A568-5CB2-B580-5B239D013466}", + "base": "{B1CAAC2D-A568-5CB2-B580-5B239D013466}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Multiplier", + "base": "DataInput_Multiplier", "details": { "name": "Multiplier" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Negate.names index e578384975..b0fa0beae4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Negate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A239FB13-643C-5D47-9580-A373491FECCA}", + "base": "{A239FB13-643C-5D47-9580-A373491FECCA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Normalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Normalize.names index cf0a181d0b..a0f535b4d4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Normalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Normalize.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{CF4EBDEE-B16A-5402-B44D-75FF06AD89AE}", + "base": "{CF4EBDEE-B16A-5402-B44D-75FF06AD89AE}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Project.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Project.names index 80df59908d..ff18755ecb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Project.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Project.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D24123BA-6C59-5F58-90E2-FCB085384BAA}", + "base": "{D24123BA-6C59-5F58-90E2-FCB085384BAA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Reciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Reciprocal.names index dd3de8c146..de65bf82ea 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Reciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Reciprocal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E90663EA-FFD1-5908-8530-3C21BD6A9A62}", + "base": "{E90663EA-FFD1-5908-8530-3C21BD6A9A62}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetX.names index 47e3273302..7db313ffca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetX.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A5945988-1E94-5560-B1EE-B513AD113E1C}", + "base": "{A5945988-1E94-5560-B1EE-B513AD113E1C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_X", + "base": "DataInput_X", "details": { "name": "X" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetY.names index 8456f9de21..db5299df5b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetY.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{08880FE1-8C3E-5380-A3FF-CA1AE16953FC}", + "base": "{08880FE1-8C3E-5380-A3FF-CA1AE16953FC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Y", + "base": "DataInput_Y", "details": { "name": "Y" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetZ.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetZ.names index a92a4e5a7f..c8239d2d46 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetZ.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetZ.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{12C93A22-5B0B-55CC-90FC-7DB17C1C36DF}", + "base": "{12C93A22-5B0B-55CC-90FC-7DB17C1C36DF}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Z", + "base": "DataInput_Z", "details": { "name": "Z" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Slerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Slerp.names index 09251d7f13..5052d03400 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Slerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Slerp.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{55EA4F53-2789-54B2-9CC7-4DB62B2CB270}", + "base": "{55EA4F53-2789-54B2-9CC7-4DB62B2CB270}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_T", + "base": "DataInput_T", "details": { "name": "T" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Absolute.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Absolute.names index 5ea08e0e68..c5ebee0f5a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Absolute.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Absolute.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A5BAEA40-C676-5C16-AEA0-D01C78E5918E}", + "base": "{A5BAEA40-C676-5C16-AEA0-D01C78E5918E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_DirectionTo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_DirectionTo.names index d1fdcbe653..e8ab09461e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_DirectionTo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_DirectionTo.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1FC1ABCB-220E-5CBF-AE38-14E7389D0AE4}", + "base": "{1FC1ABCB-220E-5CBF-AE38-14E7389D0AE4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_From", + "base": "DataInput_From", "details": { "name": "From" } }, { - "key": "DataInput_To", + "base": "DataInput_To", "details": { "name": "To" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Dot.names index 59dfbbc61f..d780f4379b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Dot.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{59AF8BA5-11BA-5E5E-982C-2E7A8C6600D4}", + "base": "{59AF8BA5-11BA-5E5E-982C-2E7A8C6600D4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_FromValues.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_FromValues.names index 73f6088330..1f362d71f9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_FromValues.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_FromValues.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{DFDC391C-782D-58D9-BF81-C7B13A0F4CFC}", + "base": "{DFDC391C-782D-58D9-BF81-C7B13A0F4CFC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,43 +11,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_X", + "base": "DataInput_X", "details": { "name": "X" } }, { - "key": "DataInput_Y", + "base": "DataInput_Y", "details": { "name": "Y" } }, { - "key": "DataInput_Z", + "base": "DataInput_Z", "details": { "name": "Z" } }, { - "key": "DataInput_W", + "base": "DataInput_W", "details": { "name": "W" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_GetElement.names index 7b37a541e7..f09bda9acf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_GetElement.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1AC44E60-9560-58DD-A210-48A755155D6D}", + "base": "{1AC44E60-9560-58DD-A210-48A755155D6D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Index", + "base": "DataInput_Index", "details": { "name": "Index" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsClose.names index 583d85d028..5881c02adb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsClose.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{DD9F50A6-AC60-59E1-8C63-C6C392DA8C15}", + "base": "{DD9F50A6-AC60-59E1-8C63-C6C392DA8C15}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_A", + "base": "DataInput_A", "details": { "name": "A" } }, { - "key": "DataInput_B", + "base": "DataInput_B", "details": { "name": "B" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsFinite.names index 603a38f9c8..9e1c8e5ba0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsFinite.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{138EE359-9CA0-520B-873D-90C2183C96FE}", + "base": "{138EE359-9CA0-520B-873D-90C2183C96FE}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsNormalized.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsNormalized.names index 7ae2964f40..92b367b6e2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsNormalized.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsNormalized.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B2EE1FD3-D33D-5348-AC29-E2D08C1E3363}", + "base": "{B2EE1FD3-D33D-5348-AC29-E2D08C1E3363}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsZero.names index a1bbb08d27..6d2bacb0b2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsZero.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{EBD3BEF3-0FA8-5508-8C9B-BDCA64A00E5E}", + "base": "{EBD3BEF3-0FA8-5508-8C9B-BDCA64A00E5E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Tolerance", + "base": "DataInput_Tolerance", "details": { "name": "Tolerance" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Length.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Length.names index b6329060b3..2aa5585b43 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Length.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Length.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{768CD3CA-09E3-51EB-AE59-8D34DC0D12A8}", + "base": "{768CD3CA-09E3-51EB-AE59-8D34DC0D12A8}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthReciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthReciprocal.names index cfe495d8a6..4affd32f7c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthReciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthReciprocal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{60E6D939-6105-53CB-865B-4F401A1B487B}", + "base": "{60E6D939-6105-53CB-865B-4F401A1B487B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthSquared.names index f4602d127a..1abb6d4e9b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthSquared.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4DFB1966-BDE3-55C3-A0B4-0D04926AB732}", + "base": "{4DFB1966-BDE3-55C3-A0B4-0D04926AB732}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_MultiplyByNumber.names index 556582c9d8..c9cd4b2513 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_MultiplyByNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{317BA61D-AEEA-566E-A113-2384C5BDADD6}", + "base": "{317BA61D-AEEA-566E-A113-2384C5BDADD6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Multiplier", + "base": "DataInput_Multiplier", "details": { "name": "Multiplier" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Negate.names index 8cf9ae9226..74da5c724d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Negate.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B8B0E83E-F1C3-5F0B-93A5-1756B79E1316}", + "base": "{B8B0E83E-F1C3-5F0B-93A5-1756B79E1316}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Normalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Normalize.names index 5b1dc01d6f..9d51b0e78d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Normalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Normalize.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{9337FBC7-20D8-51C7-8D69-D9E53B739BD7}", + "base": "{9337FBC7-20D8-51C7-8D69-D9E53B739BD7}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Reciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Reciprocal.names index 82a67c218a..f493b7bf20 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Reciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Reciprocal.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A7AB6D14-CDAF-519D-B29F-2E1292257A4C}", + "base": "{A7AB6D14-CDAF-519D-B29F-2E1292257A4C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetW.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetW.names index 79d028c7c3..c89ebd7840 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetW.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetW.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{48337108-38AA-5A58-BBFD-D15560A0B685}", + "base": "{48337108-38AA-5A58-BBFD-D15560A0B685}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_W", + "base": "DataInput_W", "details": { "name": "W" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetX.names index ea852cfdc5..b9b9e96845 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetX.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E39B02FA-3231-57AC-8D2F-E9448E2CECD3}", + "base": "{E39B02FA-3231-57AC-8D2F-E9448E2CECD3}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_X", + "base": "DataInput_X", "details": { "name": "X" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetY.names index 9f3e456472..f0f2b04cf8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetY.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{45D44536-DCE8-5CC1-9311-9BC79BBF333C}", + "base": "{45D44536-DCE8-5CC1-9311-9BC79BBF333C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Y", + "base": "DataInput_Y", "details": { "name": "Y" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetZ.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetZ.names index b3db2cb06c..3467d2ca52 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetZ.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetZ.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8CC2A1A7-FD41-5C7B-BC1A-BEF5BBF74D62}", + "base": "{8CC2A1A7-FD41-5C7B-BC1A-BEF5BBF74D62}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Z", + "base": "DataInput_Z", "details": { "name": "Z" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Add_+_.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Add_+_.names index c48a0bdaf7..fb9b199a4d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Add_+_.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Add_+_.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C1B42FEC-0545-4511-9FAC-11E0387FEDF0}", + "base": "{C1B42FEC-0545-4511-9FAC-11E0387FEDF0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Divide__.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Divide__.names index b5aa513ee4..40d1552274 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Divide__.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Divide__.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{DC17E19F-3829-410D-9A0B-AD60C6066DAA}", + "base": "{DC17E19F-3829-410D-9A0B-AD60C6066DAA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_DividebyNumber__.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_DividebyNumber__.names index 9b56075a42..45005dc5c4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_DividebyNumber__.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_DividebyNumber__.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8305B5C9-1B9F-4D5B-B3E7-66925F491E9D}", + "base": "{8305B5C9-1B9F-4D5B-B3E7-66925F491E9D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "DataInput_Divisor", + "base": "DataInput_Divisor", "details": { "name": "Divisor" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Length.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Length.names index 172d57f5db..3f2a833f95 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Length.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Length.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{AEE15BEA-CD51-4C1A-B06D-C09FB9EAA005}", + "base": "{AEE15BEA-CD51-4C1A-B06D-C09FB9EAA005}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,25 +12,25 @@ }, "slots": [ { - "key": "DataOutput_Length", + "base": "DataOutput_Length", "details": { "name": "Length" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_LerpBetween.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_LerpBetween.names index a63e64bfa4..53eaa8ebb6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_LerpBetween.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_LerpBetween.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A4CFB2F2-4045-47ED-AE73-ED60C2072EE4}", + "base": "{A4CFB2F2-4045-47ED-AE73-ED60C2072EE4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,78 +11,78 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Starts the lerp action from the beginning." } }, { - "key": "DataInput_Start", + "base": "DataInput_Start", "details": { "name": "Start" } }, { - "key": "DataInput_Stop", + "base": "DataInput_Stop", "details": { "name": "Stop" } }, { - "key": "DataInput_Speed", + "base": "DataInput_Speed", "details": { "name": "Speed" } }, { - "key": "DataInput_Maximum Duration", + "base": "DataInput_Maximum Duration", "details": { "name": "Maximum Duration" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Executes immediately after the lerp action is started." } }, { - "key": "Input_Cancel", + "base": "Input_Cancel", "details": { "name": "Cancel", "tooltip": "Stops the lerp action immediately." } }, { - "key": "Output_Canceled", + "base": "Output_Canceled", "details": { "name": "Canceled", "tooltip": "Executes immediately after the operation is canceled." } }, { - "key": "Output_Tick", + "base": "Output_Tick", "details": { "name": "Tick", "tooltip": "Signaled at each step of the lerp." } }, { - "key": "DataOutput_Step", + "base": "DataOutput_Step", "details": { "name": "Step" } }, { - "key": "DataOutput_Percent", + "base": "DataOutput_Percent", "details": { "name": "Percent" } }, { - "key": "Output_Lerp Complete", + "base": "Output_Lerp Complete", "details": { "name": "Lerp Complete", "tooltip": "Signaled after the last Tick, when the lerp is complete" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MathExpression.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MathExpression.names index 552aa8a101..4928054d0e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MathExpression.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MathExpression.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{A5841DE8-CA11-4364-9C34-5ECE8B9623D7}", + "base": "{A5841DE8-CA11-4364-9C34-5ECE8B9623D7}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,20 +12,20 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MultiplyAndAdd.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MultiplyAndAdd.names index accfab49fc..f8af2d0c67 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MultiplyAndAdd.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MultiplyAndAdd.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{9A2FDC22-90E1-5A32-9670-156BB7EE8149}", + "base": "{9A2FDC22-90E1-5A32-9670-156BB7EE8149}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,37 +10,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Multiplicand", + "base": "DataInput_Multiplicand", "details": { "name": "Multiplicand" } }, { - "key": "DataInput_Multiplier", + "base": "DataInput_Multiplier", "details": { "name": "Multiplier" } }, { - "key": "DataInput_Addend", + "base": "DataInput_Addend", "details": { "name": "Addend" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Multiply_x_.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Multiply_x_.names index ba52de3900..6293bab799 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Multiply_x_.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Multiply_x_.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E9BB45A1-AE96-47B0-B2BF-2927D420A28C}", + "base": "{E9BB45A1-AE96-47B0-B2BF-2927D420A28C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_StringToNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_StringToNumber.names index e6423917de..534d469271 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_StringToNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_StringToNumber.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8A57777C-AD84-5CF4-B411-03ABF982EF55}", + "base": "{8A57777C-AD84-5CF4-B411-03ABF982EF55}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,19 +11,19 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Subtract_-_.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Subtract_-_.names index 67ed5cf859..423ec056ea 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Subtract_-_.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_Subtract_-_.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D0615D0A-027F-47F6-A02B-E35DAF22F431}", + "base": "{D0615D0A-027F-47F6-A02B-E35DAF22F431}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,31 +12,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_ThreeGeneric.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_ThreeGeneric.names index edcbe2783a..9b73829ea8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_ThreeGeneric.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_ThreeGeneric.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{9E334D28-CBB3-53AF-AFA1-8223F50312CE}", + "base": "{9E334D28-CBB3-53AF-AFA1-8223F50312CE}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,49 +12,49 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Vector3: One", + "base": "DataInput_Vector3: One", "details": { "name": "Vector3: One" } }, { - "key": "DataInput_String: Two", + "base": "DataInput_String: Two", "details": { "name": "String: Two" } }, { - "key": "DataInput_Boolean: Three", + "base": "DataInput_Boolean: Three", "details": { "name": "Boolean: Three" } }, { - "key": "DataOutput_One: Vector3", + "base": "DataOutput_One: Vector3", "details": { "name": "One: Vector3" } }, { - "key": "DataOutput_Two: String", + "base": "DataOutput_Two: String", "details": { "name": "Two: String" } }, { - "key": "DataOutput_Three: Boolean", + "base": "DataOutput_Three: Boolean", "details": { "name": "Three: Boolean" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Duration.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Duration.names index 67aca7a003..a1153b6eac 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Duration.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Duration.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{CCF1F41F-39C2-C847-9D9E-0155C8B46E1C}", + "base": "{CCF1F41F-39C2-C847-9D9E-0155C8B46E1C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,38 +11,38 @@ }, "slots": [ { - "key": "Input_Start", + "base": "Input_Start", "details": { "name": "Start" } }, { - "key": "DataInput_Duration", + "base": "DataInput_Duration", "details": { "name": "Duration" } }, { - "key": "Output_On Start", + "base": "Output_On Start", "details": { "name": "On Start" } }, { - "key": "Output_OnTick", + "base": "Output_OnTick", "details": { "name": "OnTick", "tooltip": "Signaled every frame while the duration is active." } }, { - "key": "DataOutput_Elapsed", + "base": "DataOutput_Elapsed", "details": { "name": "Elapsed" } }, { - "key": "Output_Done", + "base": "Output_Done", "details": { "name": "Done", "tooltip": "Signaled after waiting for the specified amount of times." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Repeater.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Repeater.names index 7f2fe575d7..21f18b994f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Repeater.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Repeater.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{AB587027-2270-4CA6-242F-6069C6D9BBB6}", + "base": "{AB587027-2270-4CA6-242F-6069C6D9BBB6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,38 +11,38 @@ }, "slots": [ { - "key": "Input_Start", + "base": "Input_Start", "details": { "name": "Start" } }, { - "key": "DataInput_Repetitions", + "base": "DataInput_Repetitions", "details": { "name": "Repetitions" } }, { - "key": "DataInput_Interval", + "base": "DataInput_Interval", "details": { "name": "Interval" } }, { - "key": "Output_On Start", + "base": "Output_On Start", "details": { "name": "On Start" } }, { - "key": "Output_Complete", + "base": "Output_Complete", "details": { "name": "Complete", "tooltip": "Signaled upon node exit" } }, { - "key": "Output_Action", + "base": "Output_Action", "details": { "name": "Action", "tooltip": "Signaled every repetition" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_TimeDelay.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_TimeDelay.names index fdf9afb0a1..dd4c6412f3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_TimeDelay.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_TimeDelay.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D3629902-02E9-AE59-0424-F366D342B433}", + "base": "{D3629902-02E9-AE59-0424-F366D342B433}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_Start", + "base": "Input_Start", "details": { "name": "Start" } }, { - "key": "DataInput_Delay", + "base": "DataInput_Delay", "details": { "name": "Delay" } }, { - "key": "Output_On Start", + "base": "Output_On Start", "details": { "name": "On Start" } }, { - "key": "Output_Done", + "base": "Output_Done", "details": { "name": "Done", "tooltip": "Signaled after waiting for the specified amount of times." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/OperatorsMath_OperatorArithmeticUnary.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/OperatorsMath_OperatorArithmeticUnary.names index 3b14103cc8..8f3826e4f0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/OperatorsMath_OperatorArithmeticUnary.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/OperatorsMath_OperatorArithmeticUnary.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4B68DF49-35DE-48CF-BCE3-F892CCF2639D}", + "base": "{4B68DF49-35DE-48CF-BCE3-F892CCF2639D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Operators_OperatorArithmetic.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Operators_OperatorArithmetic.names index f01ee442be..20913eedaf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Operators_OperatorArithmetic.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Operators_OperatorArithmetic.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{FE0589B0-F835-4CD5-BBD3-86510CBB985B}", + "base": "{FE0589B0-F835-4CD5-BBD3-86510CBB985B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,31 +11,31 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Operators_OperatorBase.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Operators_OperatorBase.names index 523ca60c85..9b62348cdc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Operators_OperatorBase.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Operators_OperatorBase.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{30FED030-71ED-4498-AB2C-F5586DFA490E}", + "base": "{30FED030-71ED-4498-AB2C-F5586DFA490E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,14 +11,14 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Output signal" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_BoxCastWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_BoxCastWithGroup.names index ceed8314ba..671fdd730e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_BoxCastWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_BoxCastWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{022255F7-DD50-5654-967E-6E00E8360F00}", + "base": "{022255F7-DD50-5654-967E-6E00E8360F00}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,85 +11,85 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Distance", + "base": "DataInput_Distance", "details": { "name": "Distance" } }, { - "key": "DataInput_Pose", + "base": "DataInput_Pose", "details": { "name": "Pose" } }, { - "key": "DataInput_Direction", + "base": "DataInput_Direction", "details": { "name": "Direction" } }, { - "key": "DataInput_Dimensions", + "base": "DataInput_Dimensions", "details": { "name": "Dimensions" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Object Hit", + "base": "DataOutput_Object Hit", "details": { "name": "Object Hit" } }, { - "key": "DataOutput_Position", + "base": "DataOutput_Position", "details": { "name": "Position" } }, { - "key": "DataOutput_Normal", + "base": "DataOutput_Normal", "details": { "name": "Normal" } }, { - "key": "DataOutput_Distance", + "base": "DataOutput_Distance", "details": { "name": "Distance" } }, { - "key": "DataOutput_EntityId", + "base": "DataOutput_EntityId", "details": { "name": "EntityId" } }, { - "key": "DataOutput_Surface", + "base": "DataOutput_Surface", "details": { "name": "Surface" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_CapsuleCastWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_CapsuleCastWithGroup.names index a38ace417c..4dfca63478 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_CapsuleCastWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_CapsuleCastWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1467D2BE-D829-5A8A-976D-6D06FDCD3310}", + "base": "{1467D2BE-D829-5A8A-976D-6D06FDCD3310}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,91 +11,91 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Distance", + "base": "DataInput_Distance", "details": { "name": "Distance" } }, { - "key": "DataInput_Pose", + "base": "DataInput_Pose", "details": { "name": "Pose" } }, { - "key": "DataInput_Direction", + "base": "DataInput_Direction", "details": { "name": "Direction" } }, { - "key": "DataInput_Height", + "base": "DataInput_Height", "details": { "name": "Height" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Object Hit", + "base": "DataOutput_Object Hit", "details": { "name": "Object Hit" } }, { - "key": "DataOutput_Position", + "base": "DataOutput_Position", "details": { "name": "Position" } }, { - "key": "DataOutput_Normal", + "base": "DataOutput_Normal", "details": { "name": "Normal" } }, { - "key": "DataOutput_Distance", + "base": "DataOutput_Distance", "details": { "name": "Distance" } }, { - "key": "DataOutput_EntityId", + "base": "DataOutput_EntityId", "details": { "name": "EntityId" } }, { - "key": "DataOutput_Surface", + "base": "DataOutput_Surface", "details": { "name": "Surface" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapBoxWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapBoxWithGroup.names index 9b2e0a6c0b..f49e3d2461 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapBoxWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapBoxWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B4F46A1B-7C2F-553F-BAE8-867066A365FA}", + "base": "{B4F46A1B-7C2F-553F-BAE8-867066A365FA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,43 +11,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Pose", + "base": "DataInput_Pose", "details": { "name": "Pose" } }, { - "key": "DataInput_Dimensions", + "base": "DataInput_Dimensions", "details": { "name": "Dimensions" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapCapsuleWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapCapsuleWithGroup.names index c7ac36a35e..291dc8ea75 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapCapsuleWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapCapsuleWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{588E1C8F-D18E-5C00-AF13-C4FCD5A9519D}", + "base": "{588E1C8F-D18E-5C00-AF13-C4FCD5A9519D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,49 +11,49 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Pose", + "base": "DataInput_Pose", "details": { "name": "Pose" } }, { - "key": "DataInput_Height", + "base": "DataInput_Height", "details": { "name": "Height" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapSphereWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapSphereWithGroup.names index de088ff96b..bd48cbf7ad 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapSphereWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_OverlapSphereWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{4BEFF98E-4147-55AF-B105-29085951CBA9}", + "base": "{4BEFF98E-4147-55AF-B105-29085951CBA9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,43 +11,43 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Position", + "base": "DataInput_Position", "details": { "name": "Position" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastLocalSpaceWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastLocalSpaceWithGroup.names index 3724ef2bc0..a61a7a1579 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastLocalSpaceWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastLocalSpaceWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BD7F9C50-62EA-56C0-9B8B-D23E5D28300D}", + "base": "{BD7F9C50-62EA-56C0-9B8B-D23E5D28300D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,79 +11,79 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Direction", + "base": "DataInput_Direction", "details": { "name": "Direction" } }, { - "key": "DataInput_Distance", + "base": "DataInput_Distance", "details": { "name": "Distance" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Object hit", + "base": "DataOutput_Object hit", "details": { "name": "Object hit" } }, { - "key": "DataOutput_Position", + "base": "DataOutput_Position", "details": { "name": "Position" } }, { - "key": "DataOutput_Normal", + "base": "DataOutput_Normal", "details": { "name": "Normal" } }, { - "key": "DataOutput_Distance", + "base": "DataOutput_Distance", "details": { "name": "Distance" } }, { - "key": "DataOutput_EntityId", + "base": "DataOutput_EntityId", "details": { "name": "EntityId" } }, { - "key": "DataOutput_Surface", + "base": "DataOutput_Surface", "details": { "name": "Surface" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastMultipleLocalSpaceWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastMultipleLocalSpaceWithGroup.names index 4d0504b0fd..f2d2934035 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastMultipleLocalSpaceWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastMultipleLocalSpaceWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{FB91B476-0015-508A-AC0B-18F8A860EB7A}", + "base": "{FB91B476-0015-508A-AC0B-18F8A860EB7A}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,49 +11,49 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Direction", + "base": "DataInput_Direction", "details": { "name": "Direction" } }, { - "key": "DataInput_Distance", + "base": "DataInput_Distance", "details": { "name": "Distance" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Objects hit", + "base": "DataOutput_Objects hit", "details": { "name": "Objects hit" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastWorldSpaceWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastWorldSpaceWithGroup.names index 194f9aebf0..8051204ab7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastWorldSpaceWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_RayCastWorldSpaceWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{33EE1562-D9B5-5DA2-BB9E-F1F75B927B9C}", + "base": "{33EE1562-D9B5-5DA2-BB9E-F1F75B927B9C}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,79 +11,79 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Start", + "base": "DataInput_Start", "details": { "name": "Start" } }, { - "key": "DataInput_Direction", + "base": "DataInput_Direction", "details": { "name": "Direction" } }, { - "key": "DataInput_Distance", + "base": "DataInput_Distance", "details": { "name": "Distance" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Object hit", + "base": "DataOutput_Object hit", "details": { "name": "Object hit" } }, { - "key": "DataOutput_Position", + "base": "DataOutput_Position", "details": { "name": "Position" } }, { - "key": "DataOutput_Normal", + "base": "DataOutput_Normal", "details": { "name": "Normal" } }, { - "key": "DataOutput_Distance", + "base": "DataOutput_Distance", "details": { "name": "Distance" } }, { - "key": "DataOutput_EntityId", + "base": "DataOutput_EntityId", "details": { "name": "EntityId" } }, { - "key": "DataOutput_Surface", + "base": "DataOutput_Surface", "details": { "name": "Surface" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_SphereCastWithGroup.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_SphereCastWithGroup.names index 1190d91bca..705fa25d66 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_SphereCastWithGroup.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/PhysXWorld_SphereCastWithGroup.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{FF1EE92C-FD34-51E9-B128-00595ABB78E6}", + "base": "{FF1EE92C-FD34-51E9-B128-00595ABB78E6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,85 +11,85 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Distance", + "base": "DataInput_Distance", "details": { "name": "Distance" } }, { - "key": "DataInput_Pose", + "base": "DataInput_Pose", "details": { "name": "Pose" } }, { - "key": "DataInput_Direction", + "base": "DataInput_Direction", "details": { "name": "Direction" } }, { - "key": "DataInput_Radius", + "base": "DataInput_Radius", "details": { "name": "Radius" } }, { - "key": "DataInput_Collision group", + "base": "DataInput_Collision group", "details": { "name": "Collision group" } }, { - "key": "DataInput_Ignore", + "base": "DataInput_Ignore", "details": { "name": "Ignore" } }, { - "key": "DataOutput_Object Hit", + "base": "DataOutput_Object Hit", "details": { "name": "Object Hit" } }, { - "key": "DataOutput_Position", + "base": "DataOutput_Position", "details": { "name": "Position" } }, { - "key": "DataOutput_Normal", + "base": "DataOutput_Normal", "details": { "name": "Normal" } }, { - "key": "DataOutput_Distance", + "base": "DataOutput_Distance", "details": { "name": "Distance" } }, { - "key": "DataOutput_EntityId", + "base": "DataOutput_EntityId", "details": { "name": "EntityId" } }, { - "key": "DataOutput_Surface", + "base": "DataOutput_Surface", "details": { "name": "Surface" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Spawning_Spawn.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Spawning_Spawn.names index d553da7dc0..3f099577f9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Spawning_Spawn.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Spawning_Spawn.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{2447798B-B970-FDBA-A2E2-B563513663F0}", + "base": "{2447798B-B970-FDBA-A2E2-B563513663F0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,43 +12,43 @@ }, "slots": [ { - "key": "Input_Request Spawn", + "base": "Input_Request Spawn", "details": { "name": "Request Spawn" } }, { - "key": "DataInput_Translation", + "base": "DataInput_Translation", "details": { "name": "Translation" } }, { - "key": "DataInput_Rotation", + "base": "DataInput_Rotation", "details": { "name": "Rotation" } }, { - "key": "DataInput_Scale", + "base": "DataInput_Scale", "details": { "name": "Scale" } }, { - "key": "Output_Spawn Requested", + "base": "Output_Spawn Requested", "details": { "name": "Spawn Requested" } }, { - "key": "Output_On Spawn", + "base": "Output_On Spawn", "details": { "name": "On Spawn" } }, { - "key": "DataOutput_SpawnedEntitiesList", + "base": "DataOutput_SpawnedEntitiesList", "details": { "name": "SpawnedEntitiesList" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_BuildString.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_BuildString.names index 90d3c24605..4576c21318 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_BuildString.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_BuildString.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B16259BA-9CF6-4143-B09B-5A0F3B4585E6}", + "base": "{B16259BA-9CF6-4143-B09B-5A0F3B4585E6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,26 +12,26 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_String", + "base": "DataOutput_String", "details": { "name": "String" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ContainsString.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ContainsString.names index 75a5a11fd9..7cb1b668d4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ContainsString.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ContainsString.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8481E892-DE37-4CCF-86AA-E4770DE90643}", + "base": "{8481E892-DE37-4CCF-86AA-E4770DE90643}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,51 +12,51 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Pattern", + "base": "DataInput_Pattern", "details": { "name": "Pattern" } }, { - "key": "DataInput_Search From End", + "base": "DataInput_Search From End", "details": { "name": "Search From End" } }, { - "key": "DataInput_Case Sensitive", + "base": "DataInput_Case Sensitive", "details": { "name": "Case Sensitive" } }, { - "key": "DataOutput_Index", + "base": "DataOutput_Index", "details": { "name": "Index" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "The string contains the provided pattern." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "The string did not contain the provided pattern." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_EndsWith.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_EndsWith.names index bdb2892e8b..35ba6f17b4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_EndsWith.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_EndsWith.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{6C1CECA6-C155-4ED5-96BC-1D4F11C7A0FE}", + "base": "{6C1CECA6-C155-4ED5-96BC-1D4F11C7A0FE}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,38 +12,38 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Pattern", + "base": "DataInput_Pattern", "details": { "name": "Pattern" } }, { - "key": "DataInput_Case Sensitive", + "base": "DataInput_Case Sensitive", "details": { "name": "Case Sensitive" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True" } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Join.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Join.names index 148bd56ed1..fd379e063c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Join.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Join.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{121E5B89-5A8A-4477-A3B7-078B0F1B36FD}", + "base": "{121E5B89-5A8A-4477-A3B7-078B0F1B36FD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,32 +12,32 @@ }, "slots": [ { - "key": "DataInput_String Array", + "base": "DataInput_String Array", "details": { "name": "String Array" } }, { - "key": "DataInput_Separator", + "base": "DataInput_Separator", "details": { "name": "Separator" } }, { - "key": "DataOutput_String", + "base": "DataOutput_String", "details": { "name": "String" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ReplaceString.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ReplaceString.names index 1fd973605f..2edaaa842e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ReplaceString.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ReplaceString.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{197D0BAA-FCAF-4922-872B-3A95BEA574B2}", + "base": "{197D0BAA-FCAF-4922-872B-3A95BEA574B2}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,44 +12,44 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Replace", + "base": "DataInput_Replace", "details": { "name": "Replace" } }, { - "key": "DataInput_With", + "base": "DataInput_With", "details": { "name": "With" } }, { - "key": "DataInput_Case Sensitive", + "base": "DataInput_Case Sensitive", "details": { "name": "Case Sensitive" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Split.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Split.names index 95e24059a9..a16adf32b8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Split.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Split.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{327EFC0F-F71E-4028-BAF9-C4223B933FB6}", + "base": "{327EFC0F-F71E-4028-BAF9-C4223B933FB6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,32 +12,32 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Delimiters", + "base": "DataInput_Delimiters", "details": { "name": "Delimiters" } }, { - "key": "DataOutput_String Array", + "base": "DataOutput_String Array", "details": { "name": "String Array" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_StartsWith.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_StartsWith.names index 998d5eef12..0538597e7a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_StartsWith.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_StartsWith.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{60EB479A-CF31-4734-B2E5-422828A54A46}", + "base": "{60EB479A-CF31-4734-B2E5-422828A54A46}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,38 +12,38 @@ }, "slots": [ { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataInput_Pattern", + "base": "DataInput_Pattern", "details": { "name": "Pattern" } }, { - "key": "DataInput_Case Sensitive", + "base": "DataInput_Case Sensitive", "details": { "name": "Case Sensitive" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True" } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Substring.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Substring.names index 219b98d938..ff14a4fe42 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Substring.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_Substring.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F57D790D-01D5-5241-865C-3348CCB3536B}", + "base": "{F57D790D-01D5-5241-865C-3348CCB3536B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,37 +12,37 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_String: Source", + "base": "DataInput_String: Source", "details": { "name": "String: Source" } }, { - "key": "DataInput_Number: From", + "base": "DataInput_Number: From", "details": { "name": "Number: From" } }, { - "key": "DataInput_Number: Length", + "base": "DataInput_Number: Length", "details": { "name": "Number: Length" } }, { - "key": "DataOutput_Result: String", + "base": "DataOutput_Result: String", "details": { "name": "Result: String" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ToLower.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ToLower.names index dd50ef41be..1d761cd3cf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ToLower.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ToLower.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B81632B7-AE9E-50D1-9F19-00F92F77B580}", + "base": "{B81632B7-AE9E-50D1-9F19-00F92F77B580}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ToUpper.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ToUpper.names index e66ac56087..bee39e0683 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ToUpper.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/String_ToUpper.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{3AB66179-2097-5C83-BA8F-B8BD1D75D1CA}", + "base": "{3AB66179-2097-5C83-BA8F-B8BD1D75D1CA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,25 +11,25 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_BranchInputTypeExample.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_BranchInputTypeExample.names index b7e47558dd..4fd4b95308 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_BranchInputTypeExample.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_BranchInputTypeExample.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{FDD3D684-2C9A-0C05-D2A3-FD67685D8F26}", + "base": "{FDD3D684-2C9A-0C05-D2A3-FD67685D8F26}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,55 +12,55 @@ }, "slots": [ { - "key": "Input_Get Internal Vector", + "base": "Input_Get Internal Vector", "details": { "name": "Get Internal Vector" } }, { - "key": "Output_On Get Internal Vector", + "base": "Output_On Get Internal Vector", "details": { "name": "On Get Internal Vector" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_Branches On Input Type", + "base": "Input_Branches On Input Type", "details": { "name": "Branches On Input Type" } }, { - "key": "DataInput_Input Type", + "base": "DataInput_Input Type", "details": { "name": "Input Type" } }, { - "key": "Output_By Value", + "base": "Output_By Value", "details": { "name": "By Value" } }, { - "key": "DataOutput_Value Input", + "base": "DataOutput_Value Input", "details": { "name": "Value Input" } }, { - "key": "Output_By Pointer", + "base": "Output_By Pointer", "details": { "name": "By Pointer" } }, { - "key": "DataOutput_Pointer Input", + "base": "DataOutput_Pointer Input", "details": { "name": "Pointer Input" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_BranchMethodSharedDataSlotExample.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_BranchMethodSharedDataSlotExample.names index 602a337a7d..cb1b376ffa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_BranchMethodSharedDataSlotExample.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_BranchMethodSharedDataSlotExample.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{131C7ECE-D083-F7CD-09FC-EE0FCF80AB86}", + "base": "{131C7ECE-D083-F7CD-09FC-EE0FCF80AB86}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,61 +12,61 @@ }, "slots": [ { - "key": "Output_One String", + "base": "Output_One String", "details": { "name": "One String" } }, { - "key": "DataOutput_string", + "base": "DataOutput_string", "details": { "name": "string" } }, { - "key": "Output_Two Strings", + "base": "Output_Two Strings", "details": { "name": "Two Strings" } }, { - "key": "DataOutput_string1", + "base": "DataOutput_string1", "details": { "name": "string1" } }, { - "key": "DataOutput_string2", + "base": "DataOutput_string2", "details": { "name": "string2" } }, { - "key": "Output_Three Strings", + "base": "Output_Three Strings", "details": { "name": "Three Strings" } }, { - "key": "DataOutput_string3", + "base": "DataOutput_string3", "details": { "name": "string3" } }, { - "key": "Output_Square", + "base": "Output_Square", "details": { "name": "Square" } }, { - "key": "Output_Pants", + "base": "Output_Pants", "details": { "name": "Pants" } }, { - "key": "Output_Hello", + "base": "Output_Hello", "details": { "name": "Hello" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_InputMethodSharedDataSlotExample.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_InputMethodSharedDataSlotExample.names index c19d2a2ba5..2ea2b7c637 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_InputMethodSharedDataSlotExample.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_InputMethodSharedDataSlotExample.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{32B1B2DB-59E6-88D7-14A3-9C5366A39A81}", + "base": "{32B1B2DB-59E6-88D7-14A3-9C5366A39A81}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,67 +12,67 @@ }, "slots": [ { - "key": "Input_Append Hello", + "base": "Input_Append Hello", "details": { "name": "Append Hello" } }, { - "key": "DataInput_str", + "base": "DataInput_str", "details": { "name": "str" } }, { - "key": "Output_On Append Hello", + "base": "Output_On Append Hello", "details": { "name": "On Append Hello" } }, { - "key": "DataOutput_Output", + "base": "DataOutput_Output", "details": { "name": "Output" } }, { - "key": "Input_Concatenate Two", + "base": "Input_Concatenate Two", "details": { "name": "Concatenate Two" } }, { - "key": "DataInput_a", + "base": "DataInput_a", "details": { "name": "a" } }, { - "key": "DataInput_b", + "base": "DataInput_b", "details": { "name": "b" } }, { - "key": "Output_On Concatenate Two", + "base": "Output_On Concatenate Two", "details": { "name": "On Concatenate Two" } }, { - "key": "Input_Concatenate Three", + "base": "Input_Concatenate Three", "details": { "name": "Concatenate Three" } }, { - "key": "DataInput_c", + "base": "DataInput_c", "details": { "name": "c" } }, { - "key": "Output_On Concatenate Three", + "base": "Output_On Concatenate Three", "details": { "name": "On Concatenate Three" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_InputTypeExample.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_InputTypeExample.names index e34cc1ceb4..0497af8efc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_InputTypeExample.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_InputTypeExample.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{42CC5090-BE28-E017-8704-FD732475CECD}", + "base": "{42CC5090-BE28-E017-8704-FD732475CECD}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,55 +12,55 @@ }, "slots": [ { - "key": "Input_Clear By Value", + "base": "Input_Clear By Value", "details": { "name": "Clear By Value" } }, { - "key": "DataInput_Value Input", + "base": "DataInput_Value Input", "details": { "name": "Value Input" } }, { - "key": "Output_On Clear By Value", + "base": "Output_On Clear By Value", "details": { "name": "On Clear By Value" } }, { - "key": "Input_Clear By Pointer", + "base": "Input_Clear By Pointer", "details": { "name": "Clear By Pointer" } }, { - "key": "DataInput_Pointer Input", + "base": "DataInput_Pointer Input", "details": { "name": "Pointer Input" } }, { - "key": "Output_On Clear By Pointer", + "base": "Output_On Clear By Pointer", "details": { "name": "On Clear By Pointer" } }, { - "key": "Input_Clear By Reference", + "base": "Input_Clear By Reference", "details": { "name": "Clear By Reference" } }, { - "key": "DataInput_Reference Input", + "base": "DataInput_Reference Input", "details": { "name": "Reference Input" } }, { - "key": "Output_On Clear By Reference", + "base": "Output_On Clear By Reference", "details": { "name": "On Clear By Reference" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_PropertyExample.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_PropertyExample.names index 0f9ac7a14d..8360f6b541 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_PropertyExample.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_PropertyExample.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{9F0A9171-A7E0-4973-5658-F7470E5DD51F}", + "base": "{9F0A9171-A7E0-4973-5658-F7470E5DD51F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,13 +12,13 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In" } }, { - "key": "Output_On In", + "base": "Output_On In", "details": { "name": "On In" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_ReturnTypeExample.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_ReturnTypeExample.names index ce9ce723a7..555fc92580 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_ReturnTypeExample.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Tests_ReturnTypeExample.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{97C6661E-069C-877B-4FBC-AD14CCCBB43D}", + "base": "{97C6661E-069C-877B-4FBC-AD14CCCBB43D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,55 +12,55 @@ }, "slots": [ { - "key": "Input_Return By Value", + "base": "Input_Return By Value", "details": { "name": "Return By Value" } }, { - "key": "Output_On Return By Value", + "base": "Output_On Return By Value", "details": { "name": "On Return By Value" } }, { - "key": "DataOutput_Value", + "base": "DataOutput_Value", "details": { "name": "Value" } }, { - "key": "Input_Return By Pointer", + "base": "Input_Return By Pointer", "details": { "name": "Return By Pointer" } }, { - "key": "Output_On Return By Pointer", + "base": "Output_On Return By Pointer", "details": { "name": "On Return By Pointer" } }, { - "key": "DataOutput_Pointer", + "base": "DataOutput_Pointer", "details": { "name": "Pointer" } }, { - "key": "Input_Return By Reference", + "base": "Input_Return By Reference", "details": { "name": "Return By Reference" } }, { - "key": "Output_On Return By Reference", + "base": "Output_On Return By Reference", "details": { "name": "On Return By Reference" } }, { - "key": "DataOutput_Reference", + "base": "DataOutput_Reference", "details": { "name": "Reference" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Delay.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Delay.names index 6dadfcd802..7d9f1d9d64 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Delay.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Delay.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{233C84A7-44DE-A948-D65C-46C11F1F7162}", + "base": "{233C84A7-44DE-A948-D65C-46C11F1F7162}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,92 +12,92 @@ }, "slots": [ { - "key": "Input_Start", + "base": "Input_Start", "details": { "name": "Start", "tooltip": "When signaled, execution is delayed at this node according to the specified properties." } }, { - "key": "DataInput_Start: Time", + "base": "DataInput_Start: Time", "details": { "name": "Start: Time" } }, { - "key": "DataInput_Start: Loop", + "base": "DataInput_Start: Loop", "details": { "name": "Start: Loop" } }, { - "key": "DataInput_Start: Hold", + "base": "DataInput_Start: Hold", "details": { "name": "Start: Hold" } }, { - "key": "Output_On Start", + "base": "Output_On Start", "details": { "name": "On Start", "tooltip": "When signaled, execution is delayed at this node according to the specified properties." } }, { - "key": "Input_Reset", + "base": "Input_Reset", "details": { "name": "Reset", "tooltip": "When signaled, execution is delayed at this node according to the specified properties." } }, { - "key": "DataInput_Reset: Time", + "base": "DataInput_Reset: Time", "details": { "name": "Reset: Time" } }, { - "key": "DataInput_Reset: Loop", + "base": "DataInput_Reset: Loop", "details": { "name": "Reset: Loop" } }, { - "key": "DataInput_Reset: Hold", + "base": "DataInput_Reset: Hold", "details": { "name": "Reset: Hold" } }, { - "key": "Output_On Reset", + "base": "Output_On Reset", "details": { "name": "On Reset", "tooltip": "When signaled, execution is delayed at this node according to the specified properties." } }, { - "key": "Input_Cancel", + "base": "Input_Cancel", "details": { "name": "Cancel", "tooltip": "Cancels the current delay." } }, { - "key": "Output_On Cancel", + "base": "Output_On Cancel", "details": { "name": "On Cancel", "tooltip": "Cancels the current delay." } }, { - "key": "Output_Done", + "base": "Output_Done", "details": { "name": "Done", "tooltip": "Signaled when the delay reaches zero." } }, { - "key": "DataOutput_Elapsed", + "base": "DataOutput_Elapsed", "details": { "name": "Elapsed" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Duration.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Duration.names index 33b72debaa..d3ef973ec7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Duration.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Duration.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D93538FF-3553-4C65-AB81-9089C5270214}", + "base": "{D93538FF-3553-4C65-AB81-9089C5270214}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,33 +11,33 @@ }, "slots": [ { - "key": "DataInput_Duration", + "base": "DataInput_Duration", "details": { "name": "Duration" } }, { - "key": "DataOutput_Elapsed", + "base": "DataOutput_Elapsed", "details": { "name": "Elapsed" } }, { - "key": "Input_Start", + "base": "Input_Start", "details": { "name": "Start", "tooltip": "Starts the countdown" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled every frame while the duration is active." } }, { - "key": "Output_Done", + "base": "Output_Done", "details": { "name": "Done", "tooltip": "Signaled once the duration is complete." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_HeartBeat.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_HeartBeat.names index 5cc50f1e7d..c024e58c31 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_HeartBeat.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_HeartBeat.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E73DB180-A325-763B-A1FE-517B548AF66E}", + "base": "{E73DB180-A325-763B-A1FE-517B548AF66E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,37 +11,37 @@ }, "slots": [ { - "key": "Input_Start", + "base": "Input_Start", "details": { "name": "Start" } }, { - "key": "DataInput_Interval", + "base": "DataInput_Interval", "details": { "name": "Interval" } }, { - "key": "Output_On Start", + "base": "Output_On Start", "details": { "name": "On Start" } }, { - "key": "Input_Stop", + "base": "Input_Stop", "details": { "name": "Stop" } }, { - "key": "Output_On Stop", + "base": "Output_On Stop", "details": { "name": "On Stop" } }, { - "key": "Output_Pulse", + "base": "Output_Pulse", "details": { "name": "Pulse", "tooltip": "Signaled at each specified interval." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_OnGraphStart.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_OnGraphStart.names index 0664dfcccc..d5162caf05 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_OnGraphStart.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_OnGraphStart.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{F200B22A-5903-483A-BF63-5241BC03632B}", + "base": "{F200B22A-5903-483A-BF63-5241BC03632B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,7 +12,7 @@ }, "slots": [ { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled when the entity that owns this graph is fully activated." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_TickDelay.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_TickDelay.names index 994c19dcb2..a682f2b7ec 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_TickDelay.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_TickDelay.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{399A2608-77E3-41F9-90FA-58A9B6E0E34D}", + "base": "{399A2608-77E3-41F9-90FA-58A9B6E0E34D}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,26 +11,26 @@ }, "slots": [ { - "key": "DataInput_Ticks", + "base": "DataInput_Ticks", "details": { "name": "Ticks" } }, { - "key": "DataInput_Tick Order", + "base": "DataInput_Tick Order", "details": { "name": "Tick Order" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "When signaled, execution is delayed at this node for the specified amount of frames." } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after waiting for the specified amount of frames." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_TimeDelay.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_TimeDelay.names index 07e418a798..bfe267f227 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_TimeDelay.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_TimeDelay.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{364F5AC9-8351-44B6-A069-03367B21F7AA}", + "base": "{364F5AC9-8351-44B6-A069-03367B21F7AA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,21 +11,21 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "When signaled, execution is delayed at this node for the specified amount of times." } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after waiting for the specified amount of times." } }, { - "key": "DataInput_Delay", + "base": "DataInput_Delay", "details": { "name": "Delay" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Timer.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Timer.names index 03846acfea..87b2c1cefa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Timer.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Timing_Timer.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{60CF8540-E51A-434D-A32C-461C41D68AF9}", + "base": "{60CF8540-E51A-434D-A32C-461C41D68AF9}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,33 +11,33 @@ }, "slots": [ { - "key": "DataOutput_Milliseconds", + "base": "DataOutput_Milliseconds", "details": { "name": "Milliseconds" } }, { - "key": "DataOutput_Seconds", + "base": "DataOutput_Seconds", "details": { "name": "Seconds" } }, { - "key": "Input_Start", + "base": "Input_Start", "details": { "name": "Start", "tooltip": "Starts the timer." } }, { - "key": "Input_Stop", + "base": "Input_Stop", "details": { "name": "Stop", "tooltip": "Stops the timer." } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled every frame while the timer is running." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_ArithmeticExpression.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_ArithmeticExpression.names index 5888ef600b..8412a5383d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_ArithmeticExpression.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_ArithmeticExpression.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B13F8DE1-E017-484D-9910-BABFB355D72E}", + "base": "{B13F8DE1-E017-484D-9910-BABFB355D72E}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,33 +10,33 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after the arithmetic operation is done." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_BinaryOperator.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_BinaryOperator.names index 99250a91e7..e07670e988 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_BinaryOperator.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_BinaryOperator.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5BD0E8C7-9B0A-42F5-9EB0-199E6EC8FA99}", + "base": "{5BD0E8C7-9B0A-42F5-9EB0-199E6EC8FA99}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_BooleanExpression.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_BooleanExpression.names index 1c510ed8f2..7df3ca9423 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_BooleanExpression.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_BooleanExpression.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{36C69825-CFF8-4F70-8F3B-1A9227E8BEEA}", + "base": "{36C69825-CFF8-4F70-8F3B-1A9227E8BEEA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,27 +10,27 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_ComparisonExpression.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_ComparisonExpression.names index aa9f24a5a4..f59d822ffb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_ComparisonExpression.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_ComparisonExpression.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{82C50EAD-D3DD-45D2-BFCE-981D95771DC8}", + "base": "{82C50EAD-D3DD-45D2-BFCE-981D95771DC8}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,40 +10,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_EqualityExpression.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_EqualityExpression.names index 9e85f54642..f8404345b7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_EqualityExpression.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_EqualityExpression.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{78D20EB6-BA07-4071-B646-7C2D68A0A4A6}", + "base": "{78D20EB6-BA07-4071-B646-7C2D68A0A4A6}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,40 +10,40 @@ }, "slots": [ { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." } }, { - "key": "DataInput_Value A", + "base": "DataInput_Value A", "details": { "name": "Value A" } }, { - "key": "DataInput_Value B", + "base": "DataInput_Value B", "details": { "name": "Value B" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_GetVariable.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_GetVariable.names index a2c586b1d5..a2a6475525 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_GetVariable.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_GetVariable.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8225BE35-4C45-4A32-94D9-3DE114F6F5AF}", + "base": "{8225BE35-4C45-4A32-94D9-3DE114F6F5AF}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,14 +10,14 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "When signaled sends the property referenced by this node to a Data Output slot" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after the referenced property has been pushed to the Data Output slot" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_NodeableNode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_NodeableNode.names index db32104037..d884e287da 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_NodeableNode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_NodeableNode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{80351020-5778-491A-B6CA-C78364C19499}", + "base": "{80351020-5778-491A-B6CA-C78364C19499}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_NodeableNodeOverloaded.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_NodeableNodeOverloaded.names index dcedf6840c..fa7c4723e1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_NodeableNodeOverloaded.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_NodeableNodeOverloaded.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{C5C21008-F0B8-4FC8-843E-9C5C50B9DCDC}", + "base": "{C5C21008-F0B8-4FC8-843E-9C5C50B9DCDC}", "context": "ScriptCanvas::Node", "variant": "", "details": { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_SetVariable.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_SetVariable.names index 190dfb4c28..b4e5f12867 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_SetVariable.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_SetVariable.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{5EFD2942-AFF9-4137-939C-023AEAA72EB0}", + "base": "{5EFD2942-AFF9-4137-939C-023AEAA72EB0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,14 +10,14 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "When signaled sends the variable referenced by this node to a Data Output slot" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after the referenced variable has been pushed to the Data Output slot" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_UnaryExpression.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_UnaryExpression.names index 28ca30346b..4933d2d9bc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_UnaryExpression.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_UnaryExpression.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{70FF2162-3D01-41F1-B009-7DC071A38471}", + "base": "{70FF2162-3D01-41F1-B009-7DC071A38471}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,33 +10,33 @@ }, "slots": [ { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "DataOutput_Result", + "base": "DataOutput_Result", "details": { "name": "Result" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." } }, { - "key": "Output_True", + "base": "Output_True", "details": { "name": "True", "tooltip": "Signaled if the result of the operation is true." } }, { - "key": "Output_False", + "base": "Output_False", "details": { "name": "False", "tooltip": "Signaled if the result of the operation is false." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_UnaryOperator.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_UnaryOperator.names index 3717b44595..b18fe07c1f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_UnaryOperator.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Uncategorized_UnaryOperator.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{B0BF8615-D718-4115-B3D8-CAB554BC6863}", + "base": "{B0BF8615-D718-4115-B3D8-CAB554BC6863}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Signal to perform the evaluation when desired." diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesDebug_Print.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesDebug_Print.names index b1817d9acd..0b238ad007 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesDebug_Print.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesDebug_Print.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E1940FB4-83FE-4594-9AFF-375FF7603338}", + "base": "{E1940FB4-83FE-4594-9AFF-375FF7603338}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,20 +12,20 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "DataInput_Value", + "base": "DataInput_Value", "details": { "name": "Value" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_AddFailure.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_AddFailure.names index 8f0eb7f3af..f1e851bd4d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_AddFailure.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_AddFailure.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{1C4971A7-DE76-4E8E-9381-F579A57B2A78}", + "base": "{1C4971A7-DE76-4E8E-9381-F579A57B2A78}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,20 +11,20 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_AddSuccess.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_AddSuccess.names index 0b3b7a1399..5ebb61abdb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_AddSuccess.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_AddSuccess.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0D5B9544-C36B-490F-899A-E260D8351620}", + "base": "{0D5B9544-C36B-490F-899A-E260D8351620}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,20 +11,20 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_Checkpoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_Checkpoint.names index 3ad1d73949..c87e917ec6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_Checkpoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_Checkpoint.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E65449D2-45A9-402B-ADF7-4E4F27A99245}", + "base": "{E65449D2-45A9-402B-ADF7-4E4F27A99245}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,20 +11,20 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectEqual.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectEqual.names index 6a0e5938b7..82e29a3761 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectEqual.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectEqual.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{856DB72A-48CB-4142-A032-1253D3AB8BEC}", + "base": "{856DB72A-48CB-4142-A032-1253D3AB8BEC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,32 +11,32 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Candidate", + "base": "DataInput_Candidate", "details": { "name": "Candidate" } }, { - "key": "DataInput_Reference", + "base": "DataInput_Reference", "details": { "name": "Reference" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectFalse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectFalse.names index f5f80e56ea..0ece11c5d3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectFalse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectFalse.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{3838E12C-CEAB-4CED-9958-B6C0399FCD92}", + "base": "{3838E12C-CEAB-4CED-9958-B6C0399FCD92}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,26 +11,26 @@ }, "slots": [ { - "key": "DataInput_Candidate", + "base": "DataInput_Candidate", "details": { "name": "Candidate" } }, { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectGreaterThan.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectGreaterThan.names index 73dabca9d7..b5e85fc361 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectGreaterThan.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectGreaterThan.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8DD464A5-C09D-4017-82B7-B1EA672BA9EA}", + "base": "{8DD464A5-C09D-4017-82B7-B1EA672BA9EA}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,32 +11,32 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Candidate", + "base": "DataInput_Candidate", "details": { "name": "Candidate" } }, { - "key": "DataInput_Reference", + "base": "DataInput_Reference", "details": { "name": "Reference" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectGreaterThanEqual.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectGreaterThanEqual.names index cf1068fdbe..3d82f05c18 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectGreaterThanEqual.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectGreaterThanEqual.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{8EB4E313-1479-4428-AE0C-75F233C5F5EB}", + "base": "{8EB4E313-1479-4428-AE0C-75F233C5F5EB}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,32 +11,32 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Candidate", + "base": "DataInput_Candidate", "details": { "name": "Candidate" } }, { - "key": "DataInput_Reference", + "base": "DataInput_Reference", "details": { "name": "Reference" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectLessThan.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectLessThan.names index 6d2ac88907..f3a875700a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectLessThan.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectLessThan.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{693FD406-8735-4DBB-B0A8-39E7DA467559}", + "base": "{693FD406-8735-4DBB-B0A8-39E7DA467559}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,32 +11,32 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Candidate", + "base": "DataInput_Candidate", "details": { "name": "Candidate" } }, { - "key": "DataInput_Reference", + "base": "DataInput_Reference", "details": { "name": "Reference" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectLessThanEqual.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectLessThanEqual.names index 8c9bb8df5f..1897bf12fe 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectLessThanEqual.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectLessThanEqual.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{52D4803F-6273-4A4E-96CC-F2892CFE433B}", + "base": "{52D4803F-6273-4A4E-96CC-F2892CFE433B}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,32 +11,32 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Candidate", + "base": "DataInput_Candidate", "details": { "name": "Candidate" } }, { - "key": "DataInput_Reference", + "base": "DataInput_Reference", "details": { "name": "Reference" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectNotEqual.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectNotEqual.names index ef1b954761..cbe4045c11 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectNotEqual.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectNotEqual.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{66334794-0F98-4BFC-9DB0-8AB6A4052D09}", + "base": "{66334794-0F98-4BFC-9DB0-8AB6A4052D09}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,32 +11,32 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } }, { - "key": "DataInput_Candidate", + "base": "DataInput_Candidate", "details": { "name": "Candidate" } }, { - "key": "DataInput_Reference", + "base": "DataInput_Reference", "details": { "name": "Reference" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectTrue.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectTrue.names index 62c2dfb710..71bf43b22a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectTrue.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_ExpectTrue.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{88F9BE2D-F591-45AD-9682-FBB67C39C504}", + "base": "{88F9BE2D-F591-45AD-9682-FBB67C39C504}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,26 +11,26 @@ }, "slots": [ { - "key": "DataInput_Candidate", + "base": "DataInput_Candidate", "details": { "name": "Candidate" } }, { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_MarkComplete.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_MarkComplete.names index 4a0b442e56..67c838c832 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_MarkComplete.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/UtilitiesUnitTesting_MarkComplete.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{DC0BCFE9-3066-4232-AA68-AAFB206C917F}", + "base": "{DC0BCFE9-3066-4232-AA68-AAFB206C917F}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -11,20 +11,20 @@ }, "slots": [ { - "key": "DataInput_Report", + "base": "DataInput_Report", "details": { "name": "Report" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_BaseTimerNode.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_BaseTimerNode.names index 32ac04b759..4a46770857 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_BaseTimerNode.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_BaseTimerNode.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{BAD6C904-6078-49E8-B461-CA4410B785A4}", + "base": "{BAD6C904-6078-49E8-B461-CA4410B785A4}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,7 +12,7 @@ }, "slots": [ { - "key": "DataInput_Delay", + "base": "DataInput_Delay", "details": { "name": "Delay" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_ExtractProperties.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_ExtractProperties.names index 7f052d76d3..3ce4ed1f67 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_ExtractProperties.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_ExtractProperties.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{D4C9DA8E-838B-41C6-B870-C75294C323DC}", + "base": "{D4C9DA8E-838B-41C6-B870-C75294C323DC}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,21 +12,21 @@ }, "slots": [ { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "When signaled assigns property values using the supplied source input" } }, { - "key": "Output_Out", + "base": "Output_Out", "details": { "name": "Out", "tooltip": "Signaled after all property haves have been pushed to the output slots" } }, { - "key": "DataInput_Source", + "base": "DataInput_Source", "details": { "name": "Source" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_Repeater.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_Repeater.names index c2e45a57a2..e34c059680 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_Repeater.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Utilities_Repeater.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{0A38EDCA-0571-48F0-9199-F6168C1EAAF0}", + "base": "{0A38EDCA-0571-48F0-9199-F6168C1EAAF0}", "context": "ScriptCanvas::Node", "variant": "", "details": { @@ -12,34 +12,34 @@ }, "slots": [ { - "key": "DataInput_Repetitions", + "base": "DataInput_Repetitions", "details": { "name": "Repetitions" } }, { - "key": "Input_In", + "base": "Input_In", "details": { "name": "In", "tooltip": "Input signal" } }, { - "key": "Output_Complete", + "base": "Output_Complete", "details": { "name": "Complete", "tooltip": "Signaled upon node exit" } }, { - "key": "Output_Action", + "base": "Output_Action", "details": { "name": "Action", "tooltip": "The signal that will be repeated" } }, { - "key": "DataInput_Interval", + "base": "DataInput_Interval", "details": { "name": "Interval" } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ALPHA.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ALPHA.names deleted file mode 100644 index 3ec467cbfd..0000000000 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ALPHA.names +++ /dev/null @@ -1,13 +0,0 @@ -{ - "entries": [ - { - "key": "ALPHA", - "context": "Constant", - "variant": "", - "details": { - "name": "ALPHA::Getter", - "category": "Constants" - } - } - ] -} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AreaBlenderComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AreaBlenderComponentTypeId.names new file mode 100644 index 0000000000..f024e4e28b --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AreaBlenderComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "AreaBlenderComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Area Blender Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetAreaBlenderComponentTypeId", + "details": { + "name": "Get Area Blender Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AreaLightComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AreaLightComponentTypeId.names index 2585ca9071..c1a45e9088 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AreaLightComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AreaLightComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "AreaLightComponentTypeId", + "base": "AreaLightComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "AreaLightComponentTypeId::Getter", - "category": "Constants" - } + "name": "Area Light Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetAreaLightComponentTypeId", + "details": { + "name": "Get Area Light Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_Ignore.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_Ignore.names index a8099784d0..f3de6ac1c3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_Ignore.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_Ignore.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "AudioObstructionType_Ignore", + "base": "AudioObstructionType_Ignore", "context": "Constant", "variant": "", "details": { - "name": "AudioObstructionType_Ignore::Getter", - "category": "Constants" - } + "name": " Ignore", + "category": "Constants/Audio Obstruction" + }, + "methods": [ + { + "base": "GetAudioObstructionType_Ignore", + "details": { + "name": "Ignore" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_MultiRay.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_MultiRay.names index 4c0cdc5803..b9b6d4fc0a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_MultiRay.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_MultiRay.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "AudioObstructionType_MultiRay", + "base": "AudioObstructionType_MultiRay", "context": "Constant", "variant": "", "details": { - "name": "AudioObstructionType_MultiRay::Getter", - "category": "Constants" - } + "name": "Multi Ray", + "category": "Constants/Audio Obstruction" + }, + "methods": [ + { + "base": "GetAudioObstructionType_MultiRay", + "details": { + "name": "Multi Ray" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_SingleRay.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_SingleRay.names index bf61f3430f..b86d40f250 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_SingleRay.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioObstructionType_SingleRay.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "AudioObstructionType_SingleRay", + "base": "AudioObstructionType_SingleRay", "context": "Constant", "variant": "", "details": { - "name": "AudioObstructionType_SingleRay::Getter", - "category": "Constants" - } + "name": "Single Ray", + "category": "Constants/Audio Obstruction" + }, + "methods": [ + { + "base": "GetAudioObstructionType_SingleRay", + "details": { + "name": "Single Ray" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioPreloadComponentLoadType_Auto.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioPreloadComponentLoadType_Auto.names index 0522c4b2e8..f6d2c8a197 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioPreloadComponentLoadType_Auto.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioPreloadComponentLoadType_Auto.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "AudioPreloadComponentLoadType_Auto", + "base": "AudioPreloadComponentLoadType_Auto", "context": "Constant", "variant": "", "details": { - "name": "AudioPreloadComponentLoadType_Auto::Getter", - "category": "Constants" - } + "name": "Load Type Auto", + "category": "Constants/Audio Preload" + }, + "methods": [ + { + "base": "GetAudioPreloadComponentLoadType_Auto", + "details": { + "name": "Load Type Auto" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioPreloadComponentLoadType_Manual.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioPreloadComponentLoadType_Manual.names index e81b8fd73c..4d5feaad5b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioPreloadComponentLoadType_Manual.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AudioPreloadComponentLoadType_Manual.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "AudioPreloadComponentLoadType_Manual", + "base": "AudioPreloadComponentLoadType_Manual", "context": "Constant", "variant": "", "details": { - "name": "AudioPreloadComponentLoadType_Manual::Getter", - "category": "Constants" - } + "name": "Load Type Manual", + "category": "Constants/Audio Preload" + }, + "methods": [ + { + "base": "GetAudioPreloadComponentLoadType_Manual", + "details": { + "name": "Load Type Manual" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AxisAlignedBoxShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AxisAlignedBoxShapeComponentTypeId.names index 5437a6a5c9..abbb47ca89 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AxisAlignedBoxShapeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/AxisAlignedBoxShapeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "AxisAlignedBoxShapeComponentTypeId", + "base": "AxisAlignedBoxShapeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "AxisAlignedBoxShapeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Axis Aligned Box Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetAxisAlignedBoxShapeComponentTypeId", + "details": { + "name": "Get Axis Aligned Box Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BRAVO.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BRAVO.names deleted file mode 100644 index c1cd1a28bf..0000000000 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BRAVO.names +++ /dev/null @@ -1,13 +0,0 @@ -{ - "entries": [ - { - "key": "BRAVO", - "context": "Constant", - "variant": "", - "details": { - "name": "BRAVO::Getter", - "category": "Constants" - } - } - ] -} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaDest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaDest.names index 74f2fe9c14..fdde3cc1d1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaDest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaDest.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_AlphaDest", + "base": "BlendFactor_AlphaDest", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_AlphaDest::Getter", - "category": "Constants" - } + "name": "Alpha Dest", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_AlphaDest", + "details": { + "name": "Get Alpha Dest" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaDestInverse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaDestInverse.names index ae1804aa64..c94109b0cd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaDestInverse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaDestInverse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_AlphaDestInverse", + "base": "BlendFactor_AlphaDestInverse", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_AlphaDestInverse::Getter", - "category": "Constants" - } + "name": "Alpha Dest Inverse", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_AlphaDestInverse", + "details": { + "name": "Get Alpha Dest Inverse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource.names index 252dca2bcb..b8825ce046 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_AlphaSource", + "base": "BlendFactor_AlphaSource", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_AlphaSource::Getter", - "category": "Constants" - } + "name": "Alpha Source", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "AlphaSource", + "details": { + "name": "Get Alpha Source" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource1.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource1.names index 8924ea6c15..cb229071a4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource1.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource1.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_AlphaSource1", + "base": "BlendFactor_AlphaSource1", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_AlphaSource1::Getter", - "category": "Constants" - } + "name": "Alpha Source 1", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_AlphaSource1", + "details": { + "name": "Get Alpha Source 1" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource1Inverse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource1Inverse.names index af6c0b6dd5..bf9b3144bf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource1Inverse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSource1Inverse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_AlphaSource1Inverse", + "base": "BlendFactor_AlphaSource1Inverse", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_AlphaSource1Inverse::Getter", - "category": "Constants" - } + "name": "Alpha Source 1 Inverse", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_AlphaSource1Inverse", + "details": { + "name": "Get Alpha Source 1 Inverse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSourceInverse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSourceInverse.names index f933c877a8..49eff72742 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSourceInverse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSourceInverse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_AlphaSourceInverse", + "base": "BlendFactor_AlphaSourceInverse", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_AlphaSourceInverse::Getter", - "category": "Constants" - } + "name": "Alpha Source Inverse", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_AlphaSourceInverse", + "details": { + "name": "Get Alpha Source Inverse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSourceSaturate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSourceSaturate.names index a2a027ea6b..8a104eba15 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSourceSaturate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_AlphaSourceSaturate.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_AlphaSourceSaturate", + "base": "BlendFactor_AlphaSourceSaturate", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_AlphaSourceSaturate::Getter", - "category": "Constants" - } + "name": "Alpha Source Saturate", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_AlphaSourceSaturate", + "details": { + "name": "Get Alpha Source Saturate" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorDest.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorDest.names index 1f9c086e82..a17f1e2915 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorDest.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorDest.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_ColorDest", + "base": "BlendFactor_ColorDest", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_ColorDest::Getter", - "category": "Constants" - } + "name": "Color Dest", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_ColorDest", + "details": { + "name": "Get Color Dest" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorDestInverse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorDestInverse.names index 93fa5750ef..25553bed9e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorDestInverse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorDestInverse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_ColorDestInverse", + "base": "BlendFactor_ColorDestInverse", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_ColorDestInverse::Getter", - "category": "Constants" - } + "name": "Color Dest Inverse", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_ColorDestInverse", + "details": { + "name": "Get Color Dest Inverse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource.names index 317b1f283b..c693053cb7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_ColorSource", + "base": "BlendFactor_ColorSource", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_ColorSource::Getter", - "category": "Constants" - } + "name": "Color Source", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_ColorSource", + "details": { + "name": "Get Color Source" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource1.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource1.names index 0a9db7be52..62407ba8c9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource1.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource1.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_ColorSource1", + "base": "BlendFactor_ColorSource1", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_ColorSource1::Getter", - "category": "Constants" - } + "name": "Color Source 1", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_ColorSource1", + "details": { + "name": "Get Color Source 1" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource1Inverse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource1Inverse.names index 68e4f3e1ca..4e1178fd61 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource1Inverse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSource1Inverse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_ColorSource1Inverse", + "base": "BlendFactor_ColorSource1Inverse", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_ColorSource1Inverse::Getter", - "category": "Constants" - } + "name": "Color Source 1 Inverse", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_ColorSource1Inverse", + "details": { + "name": "Get Color Source 1 Inverse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSourceInverse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSourceInverse.names index cd84b391d8..e33a9389ee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSourceInverse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_ColorSourceInverse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_ColorSourceInverse", + "base": "BlendFactor_ColorSourceInverse", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_ColorSourceInverse::Getter", - "category": "Constants" - } + "name": "Color Source Inverse", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_ColorSourceInverse", + "details": { + "name": "Get Color Source Inverse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Factor.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Factor.names index 2b7648e44c..1e235c0054 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Factor.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Factor.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_Factor", + "base": "BlendFactor_Factor", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_Factor::Getter", - "category": "Constants" - } + "name": "Factor", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_Factor", + "details": { + "name": "Get Factor" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_FactorInverse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_FactorInverse.names index f5a6d3ae3a..69eddb1fab 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_FactorInverse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_FactorInverse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_FactorInverse", + "base": "BlendFactor_FactorInverse", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_FactorInverse::Getter", - "category": "Constants" - } + "name": "Factor Inverse", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_FactorInverse", + "details": { + "name": "Get Factor Inverse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Invalid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Invalid.names index c5b269624b..0751a6a29f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Invalid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Invalid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_Invalid", + "base": "BlendFactor_Invalid", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_Invalid::Getter", - "category": "Constants" - } + "name": "Invalid", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_Invalid", + "details": { + "name": "Get Invalid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_One.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_One.names index fee52d4844..3909d3cffe 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_One.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_One.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_One", + "base": "BlendFactor_One", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_One::Getter", - "category": "Constants" - } + "name": "One", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_One", + "details": { + "name": "Get One" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Zero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Zero.names index 35c7e8df15..638a238661 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Zero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendFactor_Zero.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendFactor_Zero", + "base": "BlendFactor_Zero", "context": "Constant", "variant": "", "details": { - "name": "BlendFactor_Zero::Getter", - "category": "Constants" - } + "name": "Zero", + "category": "Constants/Blend Factor" + }, + "methods": [ + { + "base": "GetBlendFactor_Zero", + "details": { + "name": "Get Zero" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Add.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Add.names index e27d493605..ad4cf9dd21 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Add.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Add.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendOp_Add", + "base": "BlendOp_Add", "context": "Constant", "variant": "", "details": { - "name": "BlendOp_Add::Getter", - "category": "Constants" - } + "name": "Add", + "category": "Constants/Blend Operation" + }, + "methods": [ + { + "base": "GetBlendOp_Add", + "details": { + "name": "Get Add" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Invalid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Invalid.names index 7d099cc394..1b19a6d22a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Invalid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Invalid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendOp_Invalid", + "base": "BlendOp_Invalid", "context": "Constant", "variant": "", "details": { - "name": "BlendOp_Invalid::Getter", - "category": "Constants" - } + "name": "Invalid", + "category": "Constants/Blend Operation" + }, + "methods": [ + { + "base": "GetBlendOp_Invalid", + "details": { + "name": "Get Invalid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Maximum.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Maximum.names index 1970242769..2bd78c05f2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Maximum.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Maximum.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendOp_Maximum", + "base": "BlendOp_Maximum", "context": "Constant", "variant": "", "details": { - "name": "BlendOp_Maximum::Getter", - "category": "Constants" - } + "name": "Maximum", + "category": "Constants/Blend Operation" + }, + "methods": [ + { + "base": "GetBlendOp_Maximum", + "details": { + "name": "Get Maximum" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Minimum.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Minimum.names index 714568e008..f28d104183 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Minimum.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Minimum.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendOp_Minimum", + "base": "BlendOp_Minimum", "context": "Constant", "variant": "", "details": { - "name": "BlendOp_Minimum::Getter", - "category": "Constants" - } + "name": "Minimum", + "category": "Constants/Blend Operation" + }, + "methods": [ + { + "base": "Minimum", + "details": { + "name": "Get Minimum" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Subtract.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Subtract.names index 6faf93dbf4..bab41f7aa3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Subtract.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_Subtract.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendOp_Subtract", + "base": "BlendOp_Subtract", "context": "Constant", "variant": "", "details": { - "name": "BlendOp_Subtract::Getter", - "category": "Constants" - } + "name": "Subtract", + "category": "Constants/Blend Operation" + }, + "methods": [ + { + "base": "GetBlendOp_Subtract", + "details": { + "name": "Get Subtract" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_SubtractReverse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_SubtractReverse.names index b8f98b7600..74d3c63499 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_SubtractReverse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlendOp_SubtractReverse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BlendOp_SubtractReverse", + "base": "BlendOp_SubtractReverse", "context": "Constant", "variant": "", "details": { - "name": "BlendOp_SubtractReverse::Getter", - "category": "Constants" - } + "name": "Subtract Reverse", + "category": "Constants/Blend Operation" + }, + "methods": [ + { + "base": "GetBlendOp_SubtractReverse", + "details": { + "name": "Get Subtract Reverse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlockerComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlockerComponentTypeId.names new file mode 100644 index 0000000000..b2590a66f5 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BlockerComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "BlockerComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Blocker Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetBlockerComponentTypeId", + "details": { + "name": "Get Blocker Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BloomComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BloomComponentTypeId.names index 0d8ba9a325..da75eeee0a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BloomComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BloomComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BloomComponentTypeId", + "base": "BloomComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "BloomComponentTypeId::Getter", - "category": "Constants" - } + "name": "Bloom Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetBloomComponentTypeId", + "details": { + "name": "Get Bloom Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BoxShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BoxShapeComponentTypeId.names index 5f076bd6a5..47e43d6214 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BoxShapeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/BoxShapeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "BoxShapeComponentTypeId", + "base": "BoxShapeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "BoxShapeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Box Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetBoxShapeComponentTypeId", + "details": { + "name": "Get Box Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CHARLIE.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CHARLIE.names deleted file mode 100644 index 85f7c894f4..0000000000 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CHARLIE.names +++ /dev/null @@ -1,13 +0,0 @@ -{ - "entries": [ - { - "key": "CHARLIE", - "context": "Constant", - "variant": "", - "details": { - "name": "CHARLIE::Getter", - "category": "Constants" - } - } - ] -} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CUBE.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CUBE.names new file mode 100644 index 0000000000..3ec26e189b --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CUBE.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "CUBE", + "context": "Constant", + "variant": "", + "details": { + "name": "Cube", + "category": "Constants/White Box" + }, + "methods": [ + { + "base": "GetCUBE", + "details": { + "name": "Cube" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CYLINDER.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CYLINDER.names new file mode 100644 index 0000000000..b893ee0fef --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CYLINDER.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "CYLINDER", + "context": "Constant", + "variant": "", + "details": { + "name": "Cylinder", + "category": "Constants/White Box" + }, + "methods": [ + { + "base": "GetCYLINDER", + "details": { + "name": "Cylinder" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CapsuleShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CapsuleShapeComponentTypeId.names index a17f6781d4..cdb1bbc238 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CapsuleShapeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CapsuleShapeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "CapsuleShapeComponentTypeId", + "base": "CapsuleShapeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "CapsuleShapeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Capsule Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetCapsuleShapeComponentTypeId", + "details": { + "name": "Get Capsule Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ConstantGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ConstantGradientComponentTypeId.names index 0ff818c566..6ff166295b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ConstantGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ConstantGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ConstantGradientComponentTypeId", + "base": "ConstantGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ConstantGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Constant Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetConstantGradientComponentTypeId", + "details": { + "name": "Get Constant Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Back.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Back.names index 61d2c8369e..7f7caceb93 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Back.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Back.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "CullMode_Back", + "base": "CullMode_Back", "context": "Constant", "variant": "", "details": { - "name": "CullMode_Back::Getter", - "category": "Constants" - } + "name": "Back", + "category": "Constants/Cull Mode" + }, + "methods": [ + { + "base": "GetCullMode_Back", + "details": { + "name": "Get Back" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Front.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Front.names index 7f5a35a7f2..b7f8af903b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Front.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Front.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "CullMode_Front", + "base": "CullMode_Front", "context": "Constant", "variant": "", "details": { - "name": "CullMode_Front::Getter", - "category": "Constants" - } + "name": "Front", + "category": "Constants/Cull Mode" + }, + "methods": [ + { + "base": "GetCullMode_Front", + "details": { + "name": "Get Front" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Invalid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Invalid.names index 4eb73b06ea..e5367958fa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Invalid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_Invalid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "CullMode_Invalid", + "base": "CullMode_Invalid", "context": "Constant", "variant": "", "details": { - "name": "CullMode_Invalid::Getter", - "category": "Constants" - } + "name": "Invalid", + "category": "Constants/Cull Mode" + }, + "methods": [ + { + "base": "GetCullMode_Invalid", + "details": { + "name": "Get Invalid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_None.names index 182e9c7573..c563d43a64 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CullMode_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "CullMode_None", + "base": "CullMode_None", "context": "Constant", "variant": "", "details": { - "name": "CullMode_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/Cull Mode" + }, + "methods": [ + { + "base": "GetCullMode_None", + "details": { + "name": "Get None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CylinderShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CylinderShapeComponentTypeId.names index 3dadc415fd..2934f89ed4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CylinderShapeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/CylinderShapeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "CylinderShapeComponentTypeId", + "base": "CylinderShapeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "CylinderShapeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Cylinder Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetCylinderShapeComponentTypeId", + "details": { + "name": "Get Cylinder Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DecalComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DecalComponentTypeId.names index 2a6aaa134e..2187dfeb24 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DecalComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DecalComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DecalComponentTypeId", + "base": "DecalComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DecalComponentTypeId::Getter", - "category": "Constants" - } + "name": "Decal Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDecalComponentTypeId", + "details": { + "name": "Get Decal Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultLodOverride.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultLodOverride.names index c46ee43b8b..1ac1fdb105 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultLodOverride.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultLodOverride.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DefaultLodOverride", + "base": "DefaultLodOverride", "context": "Constant", "variant": "", "details": { - "name": "DefaultLodOverride::Getter", - "category": "Constants" - } + "name": "Default Lod Override", + "category": "Constants/Defaults" + }, + "methods": [ + { + "base": "GetDefaultLodOverride", + "details": { + "name": "Get Default Lod Override" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultLodType.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultLodType.names index 6e166c3480..f5884c2a8c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultLodType.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultLodType.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DefaultLodType", + "base": "DefaultLodType", "context": "Constant", "variant": "", "details": { - "name": "DefaultLodType::Getter", - "category": "Constants" - } + "name": "Default Lod Type", + "category": "Constants/Defaults" + }, + "methods": [ + { + "base": "GetDefaultLodType", + "details": { + "name": "Get Default Lod Type" + }, + "results": [ + { + "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", + "details": { + "name": "unsigned char" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignment.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignment.names index f435b539a8..2086ad1c9b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignment.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignment.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DefaultMaterialAssignment", + "base": "DefaultMaterialAssignment", "context": "Constant", "variant": "", "details": { - "name": "DefaultMaterialAssignment::Getter", - "category": "Constants" - } + "name": "Default Material Assignment", + "category": "Constants/Defaults" + }, + "methods": [ + { + "base": "GetDefaultMaterialAssignment", + "details": { + "name": "Get Default Material Assignment" + }, + "results": [ + { + "typeid": "{C66E5214-A24B-4722-B7F0-5991E6F8F163}", + "details": { + "name": "AZ:: Render:: Material Assignment" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignmentId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignmentId.names index b3188d9452..edf35bc3b1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignmentId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignmentId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DefaultMaterialAssignmentId", + "base": "DefaultMaterialAssignmentId", "context": "Constant", "variant": "", "details": { - "name": "DefaultMaterialAssignmentId::Getter", - "category": "Constants" - } + "name": "Default Material Assignment Id", + "category": "Constants/Defaults" + }, + "methods": [ + { + "base": "GetDefaultMaterialAssignmentId", + "details": { + "name": "Get Default Material Assignment Id" + }, + "results": [ + { + "typeid": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}", + "details": { + "name": "AZ:: Render:: Material Assignment Id" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignmentMap.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignmentMap.names index 248cf3f7ae..50867c97e1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignmentMap.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultMaterialAssignmentMap.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DefaultMaterialAssignmentMap", + "base": "DefaultMaterialAssignmentMap", "context": "Constant", "variant": "", "details": { - "name": "DefaultMaterialAssignmentMap::Getter", - "category": "Constants" - } + "name": "Default Material Assignment Map", + "category": "Constants/Defaults" + }, + "methods": [ + { + "base": "GetDefaultMaterialAssignmentMap", + "details": { + "name": "Get Default Material Assignment Map" + }, + "results": [ + { + "typeid": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", + "details": { + "name": "AZ Std::unordered_map" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultPhysicsSceneId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultPhysicsSceneId.names index 142b97a590..e66d74e456 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultPhysicsSceneId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultPhysicsSceneId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DefaultPhysicsSceneId", + "base": "DefaultPhysicsSceneId", "context": "Constant", "variant": "", "details": { - "name": "DefaultPhysicsSceneId::Getter", - "category": "Constants" - } + "name": "Default Physics Scene Id", + "category": "Constants/Defaults" + }, + "methods": [ + { + "base": "GetDefaultPhysicsSceneId", + "details": { + "name": "Get Default Physics Scene Id" + }, + "results": [ + { + "typeid": "{9F4E062E-06A0-46D4-85DF-E0DA96467D3A}", + "details": { + "name": "Crc 32" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultPhysicsSceneName.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultPhysicsSceneName.names index bb32deaea4..07a47cfae4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultPhysicsSceneName.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DefaultPhysicsSceneName.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DefaultPhysicsSceneName", + "base": "DefaultPhysicsSceneName", "context": "Constant", "variant": "", "details": { - "name": "DefaultPhysicsSceneName::Getter", - "category": "Constants" - } + "name": "Default Physics Scene Name", + "category": "Constants/Defaults" + }, + "methods": [ + { + "base": "GetDefaultPhysicsSceneName", + "details": { + "name": "Get Default Physics Scene Name" + }, + "results": [ + { + "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", + "details": { + "name": "char" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DeferredFogComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DeferredFogComponentTypeId.names index 4c4899f264..4ab65691fe 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DeferredFogComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DeferredFogComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DeferredFogComponentTypeId", + "base": "DeferredFogComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DeferredFogComponentTypeId::Getter", - "category": "Constants" - } + "name": "Deferred Fog Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDeferredFogComponentTypeId", + "details": { + "name": "Get Deferred Fog Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthOfFieldComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthOfFieldComponentTypeId.names index 2104b9642f..3d24f7dd7e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthOfFieldComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthOfFieldComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DepthOfFieldComponentTypeId", + "base": "DepthOfFieldComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DepthOfFieldComponentTypeId::Getter", - "category": "Constants" - } + "name": "Depth Of Field Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDepthOfFieldComponentTypeId", + "details": { + "name": "Get Depth Of Field Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_All.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_All.names index e169a19258..fda594cedf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_All.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_All.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DepthWriteMask_All", + "base": "DepthWriteMask_All", "context": "Constant", "variant": "", "details": { - "name": "DepthWriteMask_All::Getter", - "category": "Constants" - } + "name": "All", + "category": "Constants/Depth Write Mask" + }, + "methods": [ + { + "base": "GetDepthWriteMask_All", + "details": { + "name": "All" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_Invalid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_Invalid.names index 4789194d25..d28d0a68f1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_Invalid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_Invalid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DepthWriteMask_Invalid", + "base": "DepthWriteMask_Invalid", "context": "Constant", "variant": "", "details": { - "name": "DepthWriteMask_Invalid::Getter", - "category": "Constants" - } + "name": "Invalid", + "category": "Constants/Depth Write Mask" + }, + "methods": [ + { + "base": "GetDepthWriteMask_Invalid", + "details": { + "name": "Invalid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_Zero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_Zero.names index 4268b4d8f8..e33a0af623 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_Zero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DepthWriteMask_Zero.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DepthWriteMask_Zero", + "base": "DepthWriteMask_Zero", "context": "Constant", "variant": "", "details": { - "name": "DepthWriteMask_Zero::Getter", - "category": "Constants" - } + "name": "Zero", + "category": "Constants/Depth Write Mask" + }, + "methods": [ + { + "base": "GetDepthWriteMask_Zero", + "details": { + "name": "Zero" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorListCombinerComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorListCombinerComponentTypeId.names new file mode 100644 index 0000000000..4b66d5c7a2 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorListCombinerComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "DescriptorListCombinerComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Descriptor List Combiner Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDescriptorListCombinerComponentTypeId", + "details": { + "name": "Get Descriptor List Combiner Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorListComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorListComponentTypeId.names new file mode 100644 index 0000000000..c190cc2a6d --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorListComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "DescriptorListComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Descriptor List Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDescriptorListComponentTypeId", + "details": { + "name": "Get Descriptor List Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorWeightSelectorComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorWeightSelectorComponentTypeId.names new file mode 100644 index 0000000000..806f846ca7 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DescriptorWeightSelectorComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "DescriptorWeightSelectorComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Descriptor Weight Selector Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDescriptorWeightSelectorComponentTypeId", + "details": { + "name": "Get Descriptor Weight Selector Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiffuseGlobalIlluminationComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiffuseGlobalIlluminationComponentTypeId.names index 2e633a1192..123f3768a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiffuseGlobalIlluminationComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiffuseGlobalIlluminationComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DiffuseGlobalIlluminationComponentTypeId", + "base": "DiffuseGlobalIlluminationComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DiffuseGlobalIlluminationComponentTypeId::Getter", - "category": "Constants" - } + "name": "Diffuse Global Illumination Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDiffuseGlobalIlluminationComponentTypeId", + "details": { + "name": "Get Diffuse Global Illumination Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiffuseProbeGridComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiffuseProbeGridComponentTypeId.names index c5b5f17bde..255fda6778 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiffuseProbeGridComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiffuseProbeGridComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DiffuseProbeGridComponentTypeId", + "base": "DiffuseProbeGridComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DiffuseProbeGridComponentTypeId::Getter", - "category": "Constants" - } + "name": "Diffuse Probe Grid Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDiffuseProbeGridComponentTypeId", + "details": { + "name": "Get Diffuse Probe Grid Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DirectionalLightComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DirectionalLightComponentTypeId.names index 0ad98b326e..bc81a2d511 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DirectionalLightComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DirectionalLightComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DirectionalLightComponentTypeId", + "base": "DirectionalLightComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DirectionalLightComponentTypeId::Getter", - "category": "Constants" - } + "name": "Directional Light Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDirectionalLightComponentTypeId", + "details": { + "name": "Get Directional Light Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiskShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiskShapeComponentTypeId.names index cac82ca189..fee2376420 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiskShapeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DiskShapeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DiskShapeComponentTypeId", + "base": "DiskShapeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DiskShapeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Disk Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDiskShapeComponentTypeId", + "details": { + "name": "Get Disk Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplayMapperComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplayMapperComponentTypeId.names index 9117f367ee..b284f80a68 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplayMapperComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplayMapperComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplayMapperComponentTypeId", + "base": "DisplayMapperComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DisplayMapperComponentTypeId::Getter", - "category": "Constants" - } + "name": "Display Mapper Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDisplayMapperComponentTypeId", + "details": { + "name": "Get Display Mapper Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideHelpers.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideHelpers.names index 488a8f7ec2..9f47789e24 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideHelpers.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideHelpers.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplaySettings_HideHelpers", + "base": "DisplaySettings_HideHelpers", "context": "Constant", "variant": "", "details": { - "name": "DisplaySettings_HideHelpers::Getter", - "category": "Constants" - } + "name": "Hide Helpers", + "category": "Constants/Display Settings" + }, + "methods": [ + { + "base": "GetDisplaySettings_HideHelpers", + "details": { + "name": "Get Hide Helpers" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideLinks.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideLinks.names index d532e8ff35..93fc163a67 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideLinks.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideLinks.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplaySettings_HideLinks", + "base": "DisplaySettings_HideLinks", "context": "Constant", "variant": "", "details": { - "name": "DisplaySettings_HideLinks::Getter", - "category": "Constants" - } + "name": "Hide Links", + "category": "Constants/Display Settings" + }, + "methods": [ + { + "base": "GetDisplaySettings_HideLinks", + "details": { + "name": "Get Hide Links" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideTracks.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideTracks.names index ade09a965c..45872cce0d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideTracks.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_HideTracks.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplaySettings_HideTracks", + "base": "DisplaySettings_HideTracks", "context": "Constant", "variant": "", "details": { - "name": "DisplaySettings_HideTracks::Getter", - "category": "Constants" - } + "name": "Hide Tracks", + "category": "Constants/Display Settings" + }, + "methods": [ + { + "base": "GetDisplaySettings_HideTracks", + "details": { + "name": "Get Hide Tracks" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_NoCollision.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_NoCollision.names index 0cece10c67..096407f338 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_NoCollision.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_NoCollision.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplaySettings_NoCollision", + "base": "DisplaySettings_NoCollision", "context": "Constant", "variant": "", "details": { - "name": "DisplaySettings_NoCollision::Getter", - "category": "Constants" - } + "name": "No Collision", + "category": "Constants/Display Settings" + }, + "methods": [ + { + "base": "GetDisplaySettings_NoCollision", + "details": { + "name": "Get No Collision" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_NoLabels.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_NoLabels.names index d855c9ce0e..b0d8562db6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_NoLabels.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_NoLabels.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplaySettings_NoLabels", + "base": "DisplaySettings_NoLabels", "context": "Constant", "variant": "", "details": { - "name": "DisplaySettings_NoLabels::Getter", - "category": "Constants" - } + "name": "No Labels", + "category": "Constants/Display Settings" + }, + "methods": [ + { + "base": "GetDisplaySettings_NoLabels", + "details": { + "name": "Get No Labels" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_Physics.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_Physics.names index 237968c10e..224f6d48f0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_Physics.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_Physics.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplaySettings_Physics", + "base": "DisplaySettings_Physics", "context": "Constant", "variant": "", "details": { - "name": "DisplaySettings_Physics::Getter", - "category": "Constants" - } + "name": "Physics", + "category": "Constants/Display Settings" + }, + "methods": [ + { + "base": "GetDisplaySettings_Physics", + "details": { + "name": "Get Physics" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_SerializableFlagsMask.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_SerializableFlagsMask.names index c6e4c44cb2..ae664ce8a6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_SerializableFlagsMask.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_SerializableFlagsMask.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplaySettings_SerializableFlagsMask", + "base": "DisplaySettings_SerializableFlagsMask", "context": "Constant", "variant": "", "details": { - "name": "DisplaySettings_SerializableFlagsMask::Getter", - "category": "Constants" - } + "name": "Serializable Flags Mask", + "category": "Constants/Display Settings" + }, + "methods": [ + { + "base": "GetDisplaySettings_SerializableFlagsMask", + "details": { + "name": "Get Serializable Flags Mask" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_ShowDimensionFigures.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_ShowDimensionFigures.names index 2c3f42a6c5..d6d9de0549 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_ShowDimensionFigures.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DisplaySettings_ShowDimensionFigures.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DisplaySettings_ShowDimensionFigures", + "base": "DisplaySettings_ShowDimensionFigures", "context": "Constant", "variant": "", "details": { - "name": "DisplaySettings_ShowDimensionFigures::Getter", - "category": "Constants" - } + "name": "Show Dimension Figures", + "category": "Constants/Display Settings" + }, + "methods": [ + { + "base": "GetDisplaySettings_ShowDimensionFigures", + "details": { + "name": "Get Show Dimension Figures" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DistanceBetweenFilterComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DistanceBetweenFilterComponentTypeId.names new file mode 100644 index 0000000000..2e1801b3b0 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DistanceBetweenFilterComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "DistanceBetweenFilterComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Distance Between Filter Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDistanceBetweenFilterComponentTypeId", + "details": { + "name": "Get Distance Between Filter Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DistributionFilterComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DistributionFilterComponentTypeId.names new file mode 100644 index 0000000000..b5e1b96354 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DistributionFilterComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "DistributionFilterComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Distribution Filter Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetDistributionFilterComponentTypeId", + "details": { + "name": "Get Distribution Filter Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DitherGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DitherGradientComponentTypeId.names index f4be6282d0..b43e059a52 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DitherGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/DitherGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "DitherGradientComponentTypeId", + "base": "DitherGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "DitherGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Dither Gradient Component Type Id", + "category": "Constants/Editor/Component Type Id" + }, + "methods": [ + { + "base": "GetDitherGradientComponentTypeId", + "details": { + "name": "Get Dither Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorAreaLightComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorAreaLightComponentTypeId.names index fd410df4f9..c219df25cf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorAreaLightComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorAreaLightComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorAreaLightComponentTypeId", + "base": "EditorAreaLightComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorAreaLightComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Area Light Component Type Id", + "category": "Constants/Editor/Component Type Id" + }, + "methods": [ + { + "base": "GetEditorAreaLightComponentTypeId", + "details": { + "name": "Get Editor Area Light Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorBloomComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorBloomComponentTypeId.names index 2d2f101be0..29cb903318 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorBloomComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorBloomComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorBloomComponentTypeId", + "base": "EditorBloomComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorBloomComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Bloom Component Type Id", + "category": "Constants/Editor/Component Type Id" + }, + "methods": [ + { + "base": "GetEditorBloomComponentTypeId", + "details": { + "name": "Get Editor Bloom Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDecalComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDecalComponentTypeId.names index a40f551364..30bb2a1c29 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDecalComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDecalComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorDecalComponentTypeId", + "base": "EditorDecalComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorDecalComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Decal Component Type Id", + "category": "Constants/Editor/Component Type Id" + }, + "methods": [ + { + "base": "GetEditorDecalComponentTypeId", + "details": { + "name": "Get Editor Decal Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDeferredFogComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDeferredFogComponentTypeId.names index c0f17922f6..d8bdd04e6b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDeferredFogComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDeferredFogComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorDeferredFogComponentTypeId", + "base": "EditorDeferredFogComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorDeferredFogComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Deferred Fog Component Type Id", + "category": "Constants/Editor/Component Type Id" + }, + "methods": [ + { + "base": "GetEditorDeferredFogComponentTypeId", + "details": { + "name": "Get Editor Deferred Fog Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDepthOfFieldComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDepthOfFieldComponentTypeId.names index fc16e176bd..df6073be7c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDepthOfFieldComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDepthOfFieldComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorDepthOfFieldComponentTypeId", + "base": "EditorDepthOfFieldComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorDepthOfFieldComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Depth Of Field Component Type Id", + "category": "Constants/Editor/Component Type Id" + }, + "methods": [ + { + "base": "GetEditorDepthOfFieldComponentTypeId", + "details": { + "name": "Get Editor Depth Of Field Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDiffuseGlobalIlluminationComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDiffuseGlobalIlluminationComponentTypeId.names index ab9f4e04f0..3ce4b30d34 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDiffuseGlobalIlluminationComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDiffuseGlobalIlluminationComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorDiffuseGlobalIlluminationComponentTypeId", + "base": "EditorDiffuseGlobalIlluminationComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorDiffuseGlobalIlluminationComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Diffuse Global Illumination Component Type Id", + "category": "Constants/Editor/Component Type Id" + }, + "methods": [ + { + "base": "GetEditorDiffuseGlobalIlluminationComponentTypeId", + "details": { + "name": "Get Editor Diffuse Global Illumination Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDiffuseProbeGridComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDiffuseProbeGridComponentTypeId.names index 24e649c4b0..2d76298124 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDiffuseProbeGridComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDiffuseProbeGridComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorDiffuseProbeGridComponentTypeId", + "base": "EditorDiffuseProbeGridComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorDiffuseProbeGridComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Diffuse Probe Grid Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorDiffuseProbeGridComponentTypeId", + "details": { + "name": "Get Editor Diffuse Probe Grid Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDirectionalLightComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDirectionalLightComponentTypeId.names index 0caf18913a..697762e490 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDirectionalLightComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDirectionalLightComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorDirectionalLightComponentTypeId", + "base": "EditorDirectionalLightComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorDirectionalLightComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Directional Light Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorDirectionalLightComponentTypeId", + "details": { + "name": "Get Editor Directional Light Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDisplayMapperComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDisplayMapperComponentTypeId.names index 6a449cb643..18c54519a9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDisplayMapperComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorDisplayMapperComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorDisplayMapperComponentTypeId", + "base": "EditorDisplayMapperComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorDisplayMapperComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Display Mapper Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorDisplayMapperComponentTypeId", + "details": { + "name": "Get Editor Display Mapper Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityReferenceComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityReferenceComponentTypeId.names index f0214aec06..96f3adf90b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityReferenceComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityReferenceComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorEntityReferenceComponentTypeId", + "base": "EditorEntityReferenceComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorEntityReferenceComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Entity Reference Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorEntityReferenceComponentTypeId", + "details": { + "name": "Get Editor Entity Reference Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_EditorOnly.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_EditorOnly.names index e4ca34fdb0..f9536eeddc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_EditorOnly.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_EditorOnly.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorEntityStartStatus_EditorOnly", + "base": "EditorEntityStartStatus_EditorOnly", "context": "Constant", "variant": "", "details": { - "name": "EditorEntityStartStatus_EditorOnly::Getter", - "category": "Constants" - } + "name": "Editor Entity Start Status_ Editor Only", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorEntityStartStatus_EditorOnly", + "details": { + "name": "Get Editor Entity Start Status_ Editor Only" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_StartActive.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_StartActive.names index 51e4369297..a6585f24ed 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_StartActive.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_StartActive.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorEntityStartStatus_StartActive", + "base": "EditorEntityStartStatus_StartActive", "context": "Constant", "variant": "", "details": { - "name": "EditorEntityStartStatus_StartActive::Getter", - "category": "Constants" - } + "name": "Editor Entity Start Status_ Start Active", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorEntityStartStatus_StartActive", + "details": { + "name": "Get Editor Entity Start Status_ Start Active" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_StartInactive.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_StartInactive.names index fa41555722..20ed53be3d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_StartInactive.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorEntityStartStatus_StartInactive.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorEntityStartStatus_StartInactive", + "base": "EditorEntityStartStatus_StartInactive", "context": "Constant", "variant": "", "details": { - "name": "EditorEntityStartStatus_StartInactive::Getter", - "category": "Constants" - } + "name": "Editor Entity Start Status_ Start Inactive", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorEntityStartStatus_StartInactive", + "details": { + "name": "Get Editor Entity Start Status_ Start Inactive" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorExposureControlComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorExposureControlComponentTypeId.names index 3b9c6f893f..d5722e7279 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorExposureControlComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorExposureControlComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorExposureControlComponentTypeId", + "base": "EditorExposureControlComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorExposureControlComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Exposure Control Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorExposureControlComponentTypeId", + "details": { + "name": "Get Editor Exposure Control Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorGradientWeightModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorGradientWeightModifierComponentTypeId.names index dc20398559..12178cd421 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorGradientWeightModifierComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorGradientWeightModifierComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorGradientWeightModifierComponentTypeId", + "base": "EditorGradientWeightModifierComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorGradientWeightModifierComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Gradient Weight Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorGradientWeightModifierComponentTypeId", + "details": { + "name": "Get Editor Gradient Weight Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorGridComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorGridComponentTypeId.names index 5f3dbe3e87..72969664a5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorGridComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorGridComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorGridComponentTypeId", + "base": "EditorGridComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorGridComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Grid Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorGridComponentTypeId", + "details": { + "name": "Get Editor Grid Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorHDRiSkyboxComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorHDRiSkyboxComponentTypeId.names index d1e49132a9..52bd2fe5af 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorHDRiSkyboxComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorHDRiSkyboxComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorHDRiSkyboxComponentTypeId", + "base": "EditorHDRiSkyboxComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorHDRiSkyboxComponentTypeId::Getter", - "category": "Constants" - } + "name": "EditorHD Ri Skybox Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorHDRiSkyboxComponentTypeId", + "details": { + "name": "Get EditorHD Ri Skybox Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorHairComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorHairComponentTypeId.names new file mode 100644 index 0000000000..17df6d3de5 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorHairComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "EditorHairComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Editor Hair Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorHairComponentTypeId", + "details": { + "name": "Get Editor Hair Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorImageBasedLightComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorImageBasedLightComponentTypeId.names index e6ddff36a2..a57151ad18 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorImageBasedLightComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorImageBasedLightComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorImageBasedLightComponentTypeId", + "base": "EditorImageBasedLightComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorImageBasedLightComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Image Based Light Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorImageBasedLightComponentTypeId", + "details": { + "name": "Get Editor Image Based Light Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorLookModificationComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorLookModificationComponentTypeId.names index 39bcdad1e5..6d2fdbd5f0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorLookModificationComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorLookModificationComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorLookModificationComponentTypeId", + "base": "EditorLookModificationComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorLookModificationComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Look Modification Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorLookModificationComponentTypeId", + "details": { + "name": "Get Editor Look Modification Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorMaterialComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorMaterialComponentTypeId.names index 35b3db3305..385edba4d8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorMaterialComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorMaterialComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorMaterialComponentTypeId", + "base": "EditorMaterialComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorMaterialComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Material Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorMaterialComponentTypeId", + "details": { + "name": "Get Editor Material Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorMeshComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorMeshComponentTypeId.names index 8ca2af81eb..59cdcabefa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorMeshComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorMeshComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorMeshComponentTypeId", + "base": "EditorMeshComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorMeshComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Mesh Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorMeshComponentTypeId", + "details": { + "name": "Get Editor Mesh Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorNonUniformScaleComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorNonUniformScaleComponentTypeId.names index ea5a58d742..bde0970c36 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorNonUniformScaleComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorNonUniformScaleComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorNonUniformScaleComponentTypeId", + "base": "EditorNonUniformScaleComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorNonUniformScaleComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Non Uniform Scale Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorNonUniformScaleComponentTypeId", + "details": { + "name": "Get Editor Non Uniform Scale Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorOcclusionCullingPlaneComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorOcclusionCullingPlaneComponentTypeId.names index 4c2b06be1a..bd40fae6ac 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorOcclusionCullingPlaneComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorOcclusionCullingPlaneComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorOcclusionCullingPlaneComponentTypeId", + "base": "EditorOcclusionCullingPlaneComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorOcclusionCullingPlaneComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Occlusion Culling Plane Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorOcclusionCullingPlaneComponentTypeId", + "details": { + "name": "Get Editor Occlusion Culling Plane Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicalSkyComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicalSkyComponentTypeId.names index a1ec685c88..f021e937f5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicalSkyComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicalSkyComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorPhysicalSkyComponentTypeId", + "base": "EditorPhysicalSkyComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorPhysicalSkyComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Physical Sky Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorPhysicalSkyComponentTypeId", + "details": { + "name": "Get Editor Physical Sky Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicsSceneId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicsSceneId.names index d98a729c34..3961b7492a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicsSceneId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicsSceneId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorPhysicsSceneId", + "base": "EditorPhysicsSceneId", "context": "Constant", "variant": "", "details": { - "name": "EditorPhysicsSceneId::Getter", - "category": "Constants" - } + "name": "Editor Physics Scene Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorPhysicsSceneId", + "details": { + "name": "Get Editor Physics Scene Id" + }, + "results": [ + { + "typeid": "{9F4E062E-06A0-46D4-85DF-E0DA96467D3A}", + "details": { + "name": "Crc 32" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicsSceneName.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicsSceneName.names index 0a209f241c..1c8884e7a3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicsSceneName.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPhysicsSceneName.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorPhysicsSceneName", + "base": "EditorPhysicsSceneName", "context": "Constant", "variant": "", "details": { - "name": "EditorPhysicsSceneName::Getter", - "category": "Constants" - } + "name": "Editor Physics Scene Name", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorPhysicsSceneName", + "details": { + "name": "Get Editor Physics Scene Name" + }, + "results": [ + { + "typeid": "{3AB0037F-AF8D-48CE-BCA0-A170D18B2C03}", + "details": { + "name": "char" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPostFxLayerComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPostFxLayerComponentTypeId.names index d6372c4c94..45c05cc768 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPostFxLayerComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPostFxLayerComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorPostFxLayerComponentTypeId", + "base": "EditorPostFxLayerComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorPostFxLayerComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Post Fx Layer Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorPostFxLayerComponentTypeId", + "details": { + "name": "Get Editor Post Fx Layer Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPrefabComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPrefabComponentTypeId.names new file mode 100644 index 0000000000..c120f6de8e --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorPrefabComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "EditorPrefabComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Editor Prefab Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorPrefabComponentTypeId", + "details": { + "name": "Get Editor Prefab Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorRadiusWeightModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorRadiusWeightModifierComponentTypeId.names index e8d4299ea7..f7b519633f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorRadiusWeightModifierComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorRadiusWeightModifierComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorRadiusWeightModifierComponentTypeId", + "base": "EditorRadiusWeightModifierComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorRadiusWeightModifierComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Radius Weight Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorRadiusWeightModifierComponentTypeId", + "details": { + "name": "Get Editor Radius Weight Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorReflectionProbeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorReflectionProbeComponentTypeId.names index 2bbbb9d789..caf01ce791 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorReflectionProbeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorReflectionProbeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorReflectionProbeComponentTypeId", + "base": "EditorReflectionProbeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorReflectionProbeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Reflection Probe Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorReflectionProbeComponentTypeId", + "details": { + "name": "Get Editor Reflection Probe Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorShapeWeightModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorShapeWeightModifierComponentTypeId.names index 3abeafda2a..965d0a0264 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorShapeWeightModifierComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorShapeWeightModifierComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorShapeWeightModifierComponentTypeId", + "base": "EditorShapeWeightModifierComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorShapeWeightModifierComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Shape Weight Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorShapeWeightModifierComponentTypeId", + "details": { + "name": "Get Editor Shape Weight Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorSsaoComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorSsaoComponentTypeId.names index d1d030c18b..c041c1bf04 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorSsaoComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorSsaoComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorSsaoComponentTypeId", + "base": "EditorSsaoComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorSsaoComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Ssao Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorSsaoComponentTypeId", + "details": { + "name": "Get Editor Ssao Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorTransformComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorTransformComponentTypeId.names index ce90232aea..d3d17c73cc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorTransformComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EditorTransformComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EditorTransformComponentTypeId", + "base": "EditorTransformComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EditorTransformComponentTypeId::Getter", - "category": "Constants" - } + "name": "Editor Transform Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEditorTransformComponentTypeId", + "details": { + "name": "Get Editor Transform Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EntityReferenceComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EntityReferenceComponentTypeId.names index d2e2fd6713..e5d76d415c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EntityReferenceComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/EntityReferenceComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "EntityReferenceComponentTypeId", + "base": "EntityReferenceComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "EntityReferenceComponentTypeId::Getter", - "category": "Constants" - } + "name": "Entity Reference Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetEntityReferenceComponentTypeId", + "details": { + "name": "Get Entity Reference Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ExposureControlComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ExposureControlComponentTypeId.names index e88dd26549..cea1b1bcee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ExposureControlComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ExposureControlComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ExposureControlComponentTypeId", + "base": "ExposureControlComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ExposureControlComponentTypeId::Getter", - "category": "Constants" - } + "name": "Exposure Control Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetExposureControlComponentTypeId", + "details": { + "name": "Get Exposure Control Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FastNoiseGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FastNoiseGradientComponentTypeId.names new file mode 100644 index 0000000000..3a1b1e3def --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FastNoiseGradientComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "FastNoiseGradientComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Fast Noise Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetFastNoiseGradientComponentTypeId", + "details": { + "name": "Get Fast Noise Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Invalid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Invalid.names index 27cd936beb..aa856455f5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Invalid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Invalid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FillMode_Invalid", + "base": "FillMode_Invalid", "context": "Constant", "variant": "", "details": { - "name": "FillMode_Invalid::Getter", - "category": "Constants" - } + "name": "Invalid", + "category": "Constants/Fill Mode" + }, + "methods": [ + { + "base": "GetFillMode_Invalid", + "details": { + "name": "Invalid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Solid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Solid.names index e3f52f0784..1eecbacacf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Solid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Solid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FillMode_Solid", + "base": "FillMode_Solid", "context": "Constant", "variant": "", "details": { - "name": "FillMode_Solid::Getter", - "category": "Constants" - } + "name": "Solid", + "category": "Constants/Fill Mode" + }, + "methods": [ + { + "base": "GetFillMode_Solid", + "details": { + "name": "Solid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Wireframe.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Wireframe.names index cdbe3521f7..382f55dca8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Wireframe.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FillMode_Wireframe.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FillMode_Wireframe", + "base": "FillMode_Wireframe", "context": "Constant", "variant": "", "details": { - "name": "FillMode_Wireframe::Getter", - "category": "Constants" - } + "name": "Wireframe", + "category": "Constants/Fill Mode" + }, + "methods": [ + { + "base": "GetFillMode_Wireframe", + "details": { + "name": "Wireframe" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FloatEpsilon.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FloatEpsilon.names index 438ba833c5..b5dc4c02d7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FloatEpsilon.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FloatEpsilon.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FloatEpsilon", + "base": "FloatEpsilon", "context": "Constant", "variant": "", "details": { - "name": "FloatEpsilon::Getter", - "category": "Constants" - } + "name": "Float Epsilon", + "category": "Constants/Numeric" + }, + "methods": [ + { + "base": "GetFloatEpsilon", + "details": { + "name": "Float Epsilon" + }, + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "float" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_FileWriteError.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_FileWriteError.names index f0e0e3e68e..81ab3e2c12 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_FileWriteError.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_FileWriteError.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FrameCaptureResult_FileWriteError", + "base": "FrameCaptureResult_FileWriteError", "context": "Constant", "variant": "", "details": { - "name": "FrameCaptureResult_FileWriteError::Getter", - "category": "Constants" - } + "name": "File Write Error", + "category": "Constants/Frame Capture Result" + }, + "methods": [ + { + "base": "GetFrameCaptureResult_FileWriteError", + "details": { + "name": "File Write Error" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_InternalError.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_InternalError.names index 823225c397..168f94594e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_InternalError.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_InternalError.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FrameCaptureResult_InternalError", + "base": "FrameCaptureResult_InternalError", "context": "Constant", "variant": "", "details": { - "name": "FrameCaptureResult_InternalError::Getter", - "category": "Constants" - } + "name": "Internal Error", + "category": "Constants/Frame Capture Result" + }, + "methods": [ + { + "base": "GetFrameCaptureResult_InternalError", + "details": { + "name": "Internal Error" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_InvalidArgument.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_InvalidArgument.names index 360800ac3e..983e8193e3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_InvalidArgument.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_InvalidArgument.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FrameCaptureResult_InvalidArgument", + "base": "FrameCaptureResult_InvalidArgument", "context": "Constant", "variant": "", "details": { - "name": "FrameCaptureResult_InvalidArgument::Getter", - "category": "Constants" - } + "name": "Invalid Argument", + "category": "Constants/Frame Capture Result" + }, + "methods": [ + { + "base": "GetFrameCaptureResult_InvalidArgument", + "details": { + "name": "Invalid Argument" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_None.names index a6ba18d32f..8ab7a2ff17 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FrameCaptureResult_None", + "base": "FrameCaptureResult_None", "context": "Constant", "variant": "", "details": { - "name": "FrameCaptureResult_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/Frame Capture Result" + }, + "methods": [ + { + "base": "GetFrameCaptureResult_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_Success.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_Success.names index 789fd31acf..a7704a07a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_Success.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_Success.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FrameCaptureResult_Success", + "base": "FrameCaptureResult_Success", "context": "Constant", "variant": "", "details": { - "name": "FrameCaptureResult_Success::Getter", - "category": "Constants" - } + "name": "Success", + "category": "Constants/Frame Capture Result" + }, + "methods": [ + { + "base": "GetFrameCaptureResult_Success", + "details": { + "name": "Success" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_UnsupportedFormat.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_UnsupportedFormat.names index 136406261d..f16d51f8a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_UnsupportedFormat.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/FrameCaptureResult_UnsupportedFormat.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "FrameCaptureResult_UnsupportedFormat", + "base": "FrameCaptureResult_UnsupportedFormat", "context": "Constant", "variant": "", "details": { - "name": "FrameCaptureResult_UnsupportedFormat::Getter", - "category": "Constants" - } + "name": "Unsupported Format", + "category": "Constants/Frame Capture Result" + }, + "methods": [ + { + "base": "GetFrameCaptureResult_UnsupportedFormat", + "details": { + "name": "Unsupported Format" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientSurfaceDataComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientSurfaceDataComponentTypeId.names index 90e43a4a20..977aa61049 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientSurfaceDataComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientSurfaceDataComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "GradientSurfaceDataComponentTypeId", + "base": "GradientSurfaceDataComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "GradientSurfaceDataComponentTypeId::Getter", - "category": "Constants" - } + "name": "Gradient Surface Data Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetGradientSurfaceDataComponentTypeId", + "details": { + "name": "Get Gradient Surface Data Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientTransformComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientTransformComponentTypeId.names index 339c4d2904..ff20414bcf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientTransformComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientTransformComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "GradientTransformComponentTypeId", + "base": "GradientTransformComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "GradientTransformComponentTypeId::Getter", - "category": "Constants" - } + "name": "Gradient Transform Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetGradientTransformComponentTypeId", + "details": { + "name": "Get Gradient Transform Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientWeightModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientWeightModifierComponentTypeId.names index cee5ed45f5..f5f5bfbbc9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientWeightModifierComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GradientWeightModifierComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "GradientWeightModifierComponentTypeId", + "base": "GradientWeightModifierComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "GradientWeightModifierComponentTypeId::Getter", - "category": "Constants" - } + "name": "Gradient Weight Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetGradientWeightModifierComponentTypeId", + "details": { + "name": "Get Gradient Weight Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GridComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GridComponentTypeId.names index e6ca6375da..dbe919d573 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GridComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/GridComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "GridComponentTypeId", + "base": "GridComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "GridComponentTypeId::Getter", - "category": "Constants" - } + "name": "Grid Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetGridComponentTypeId", + "details": { + "name": "Get Grid Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/HDRiSkyboxComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/HDRiSkyboxComponentTypeId.names index ce30501f5a..d840a65997 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/HDRiSkyboxComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/HDRiSkyboxComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "HDRiSkyboxComponentTypeId", + "base": "HDRiSkyboxComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "HDRiSkyboxComponentTypeId::Getter", - "category": "Constants" - } + "name": "HD Ri Skybox Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetHDRiSkyboxComponentTypeId", + "details": { + "name": "GetHD Ri Skybox Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/HairComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/HairComponentTypeId.names new file mode 100644 index 0000000000..072a9214c8 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/HairComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "HairComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Hair Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetHairComponentTypeId", + "details": { + "name": "Get Hair Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ICOSAHEDRON.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ICOSAHEDRON.names new file mode 100644 index 0000000000..50fd81277d --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ICOSAHEDRON.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "ICOSAHEDRON", + "context": "Constant", + "variant": "", + "details": { + "name": "Icosahedron", + "category": "Constants/White Box" + }, + "methods": [ + { + "base": "GetICOSAHEDRON", + "details": { + "name": "Icosahedron" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ImageBasedLightComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ImageBasedLightComponentTypeId.names index 7669ee6318..9216b7bfb0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ImageBasedLightComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ImageBasedLightComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ImageBasedLightComponentTypeId", + "base": "ImageBasedLightComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ImageBasedLightComponentTypeId::Getter", - "category": "Constants" - } + "name": "Image Based Light Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetImageBasedLightComponentTypeId", + "details": { + "name": "Get Image Based Light Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ImageGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ImageGradientComponentTypeId.names index 6fa8464e57..7a19cff05d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ImageGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ImageGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ImageGradientComponentTypeId", + "base": "ImageGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ImageGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Image Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetImageGradientComponentTypeId", + "details": { + "name": "Get Image Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidComponentId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidComponentId.names index 5b2d673f0b..726f894d8d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidComponentId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidComponentId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "InvalidComponentId", + "base": "InvalidComponentId", "context": "Constant", "variant": "", "details": { - "name": "InvalidComponentId::Getter", - "category": "Constants" - } + "name": "Invalid Component Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetInvalidComponentId", + "details": { + "name": "Get Invalid Component Id" + }, + "results": [ + { + "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", + "details": { + "name": "AZ::u 64" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidParameterIndex.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidParameterIndex.names index 9d3edcdbee..a278dccb34 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidParameterIndex.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidParameterIndex.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "InvalidParameterIndex", + "base": "InvalidParameterIndex", "context": "Constant", "variant": "", "details": { - "name": "InvalidParameterIndex::Getter", - "category": "Constants" - } + "name": "Invalid Parameter Index", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetInvalidParameterIndex", + "details": { + "name": "Get Invalid Parameter Index" + }, + "results": [ + { + "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", + "details": { + "name": "AZ::u 64" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidTemplateId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidTemplateId.names index 30f928664c..34f0345f45 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidTemplateId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvalidTemplateId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "InvalidTemplateId", + "base": "InvalidTemplateId", "context": "Constant", "variant": "", "details": { - "name": "InvalidTemplateId::Getter", - "category": "Constants" - } + "name": "Invalid Template Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetInvalidTemplateId", + "details": { + "name": "Get Invalid Template Id" + }, + "results": [ + { + "typeid": "{D6597933-47CD-4FC8-B911-63F3E2B0993A}", + "details": { + "name": "AZ::u 64" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvertGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvertGradientComponentTypeId.names index 0c6d3253b5..e09f65f71f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvertGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/InvertGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "InvertGradientComponentTypeId", + "base": "InvertGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "InvertGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Invert Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetInvertGradientComponentTypeId", + "details": { + "name": "Get Invert Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/JsonMergePatch.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/JsonMergePatch.names index 53e973e3a5..dda23f91e7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/JsonMergePatch.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/JsonMergePatch.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "JsonMergePatch", + "base": "JsonMergePatch", "context": "Constant", "variant": "", "details": { - "name": "JsonMergePatch::Getter", - "category": "Constants" - } + "name": "Json Merge Patch", + "category": "Constants/Json" + }, + "methods": [ + { + "base": "GetJsonMergePatch", + "details": { + "name": "Get Json Merge Patch" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/JsonPatch.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/JsonPatch.names index fec9372c25..c5288b5e5a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/JsonPatch.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/JsonPatch.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "JsonPatch", + "base": "JsonPatch", "context": "Constant", "variant": "", "details": { - "name": "JsonPatch::Getter", - "category": "Constants" - } + "name": "Json Patch", + "category": "Constants/Json" + }, + "methods": [ + { + "base": "GetJsonPatch", + "details": { + "name": "Get Json Patch" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LANDSCAPE_CANVAS_EDITOR_ID.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LANDSCAPE_CANVAS_EDITOR_ID.names new file mode 100644 index 0000000000..b9aabee87c --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LANDSCAPE_CANVAS_EDITOR_ID.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "LANDSCAPE_CANVAS_EDITOR_ID", + "context": "Constant", + "variant": "", + "details": { + "name": "Editor Id", + "category": "Constants/Landscape Canvas" + }, + "methods": [ + { + "base": "GetLANDSCAPE_CANVAS_EDITOR_ID", + "details": { + "name": "Editor Id" + }, + "results": [ + { + "typeid": "{9F4E062E-06A0-46D4-85DF-E0DA96467D3A}", + "details": { + "name": "Crc 32" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LevelSettingsComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LevelSettingsComponentTypeId.names new file mode 100644 index 0000000000..af01c5f258 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LevelSettingsComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "LevelSettingsComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Level Settings Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetLevelSettingsComponentTypeId", + "details": { + "name": "Get Level Settings Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LevelsGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LevelsGradientComponentTypeId.names index 294b87f61e..0f44a7eb3d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LevelsGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LevelsGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "LevelsGradientComponentTypeId", + "base": "LevelsGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "LevelsGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Levels Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetLevelsGradientComponentTypeId", + "details": { + "name": "Get Levels Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LightAttenuationRadiusMode_Automatic.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LightAttenuationRadiusMode_Automatic.names index 2bbf9c2d54..8dac5f9651 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LightAttenuationRadiusMode_Automatic.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LightAttenuationRadiusMode_Automatic.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "LightAttenuationRadiusMode_Automatic", + "base": "LightAttenuationRadiusMode_Automatic", "context": "Constant", "variant": "", "details": { - "name": "LightAttenuationRadiusMode_Automatic::Getter", - "category": "Constants" - } + "name": "Automatic", + "category": "Constants/Light Attenuation Radius Mode" + }, + "methods": [ + { + "base": "GetLightAttenuationRadiusMode_Automatic", + "details": { + "name": "Automatic" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LightAttenuationRadiusMode_Explicit.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LightAttenuationRadiusMode_Explicit.names index 7f24ff6286..d3f754b147 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LightAttenuationRadiusMode_Explicit.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LightAttenuationRadiusMode_Explicit.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "LightAttenuationRadiusMode_Explicit", + "base": "LightAttenuationRadiusMode_Explicit", "context": "Constant", "variant": "", "details": { - "name": "LightAttenuationRadiusMode_Explicit::Getter", - "category": "Constants" - } + "name": "Explicit", + "category": "Constants/Light Attenuation Radius Mode" + }, + "methods": [ + { + "base": "GetLightAttenuationRadiusMode_Explicit", + "details": { + "name": "Explicit" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LookModificationComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LookModificationComponentTypeId.names index cd9bf7661f..4455d529d9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LookModificationComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/LookModificationComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "LookModificationComponentTypeId", + "base": "LookModificationComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "LookModificationComponentTypeId::Getter", - "category": "Constants" - } + "name": "Look Modification Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetLookModificationComponentTypeId", + "details": { + "name": "Get Look Modification Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialComponentTypeId.names index 0f13cdb0d6..30f9afc015 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MaterialComponentTypeId", + "base": "MaterialComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "MaterialComponentTypeId::Getter", - "category": "Constants" - } + "name": "Material Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetMaterialComponentTypeId", + "details": { + "name": "Get Material Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyGroupVisibility_Enabled.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyGroupVisibility_Enabled.names index 22ced2479c..2f7eceec8e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyGroupVisibility_Enabled.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyGroupVisibility_Enabled.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MaterialPropertyGroupVisibility_Enabled", + "base": "MaterialPropertyGroupVisibility_Enabled", "context": "Constant", "variant": "", "details": { - "name": "MaterialPropertyGroupVisibility_Enabled::Getter", - "category": "Constants" - } + "name": "Enabled", + "category": "Constants/Material Property Group Visibility" + }, + "methods": [ + { + "base": "GetMaterialPropertyGroupVisibility_Enabled", + "details": { + "name": "Enabled" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyGroupVisibility_Hidden.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyGroupVisibility_Hidden.names index 0b332ba6e4..398499a02e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyGroupVisibility_Hidden.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyGroupVisibility_Hidden.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MaterialPropertyGroupVisibility_Hidden", + "base": "MaterialPropertyGroupVisibility_Hidden", "context": "Constant", "variant": "", "details": { - "name": "MaterialPropertyGroupVisibility_Hidden::Getter", - "category": "Constants" - } + "name": "Hidden", + "category": "Constants/Material Property Group Visibility" + }, + "methods": [ + { + "base": "GetMaterialPropertyGroupVisibility_Hidden", + "details": { + "name": "Hidden" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Disabled.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Disabled.names index 7b22c9120c..41647e6229 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Disabled.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Disabled.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MaterialPropertyVisibility_Disabled", + "base": "MaterialPropertyVisibility_Disabled", "context": "Constant", "variant": "", "details": { - "name": "MaterialPropertyVisibility_Disabled::Getter", - "category": "Constants" - } + "name": "Disabled", + "category": "Constants/Material Property Visibility" + }, + "methods": [ + { + "base": "GetMaterialPropertyVisibility_Disabled", + "details": { + "name": "Disabled" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Enabled.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Enabled.names index 7da9316556..0b8f55854a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Enabled.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Enabled.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MaterialPropertyVisibility_Enabled", + "base": "MaterialPropertyVisibility_Enabled", "context": "Constant", "variant": "", "details": { - "name": "MaterialPropertyVisibility_Enabled::Getter", - "category": "Constants" - } + "name": "Enabled", + "category": "Constants/Material Property Visibility" + }, + "methods": [ + { + "base": "GetMaterialPropertyVisibility_Enabled", + "details": { + "name": "Enabled" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Hidden.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Hidden.names index 0d79119c32..f07a8c1a52 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Hidden.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MaterialPropertyVisibility_Hidden.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MaterialPropertyVisibility_Hidden", + "base": "MaterialPropertyVisibility_Hidden", "context": "Constant", "variant": "", "details": { - "name": "MaterialPropertyVisibility_Hidden::Getter", - "category": "Constants" - } + "name": "Hidden", + "category": "Constants/Material Property Visibility" + }, + "methods": [ + { + "base": "GetMaterialPropertyVisibility_Hidden", + "details": { + "name": "Hidden" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MeshBlockerComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MeshBlockerComponentTypeId.names new file mode 100644 index 0000000000..d20e624867 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MeshBlockerComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "MeshBlockerComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Mesh Blocker Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetMeshBlockerComponentTypeId", + "details": { + "name": "Get Mesh Blocker Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MeshComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MeshComponentTypeId.names index ba1709fcf2..0833a7bb15 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MeshComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MeshComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MeshComponentTypeId", + "base": "MeshComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "MeshComponentTypeId::Getter", - "category": "Constants" - } + "name": "Mesh Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetMeshComponentTypeId", + "details": { + "name": "Get Mesh Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MixedGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MixedGradientComponentTypeId.names index f0364c7c45..3780e45102 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MixedGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MixedGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MixedGradientComponentTypeId", + "base": "MixedGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "MixedGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Mixed Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetMixedGradientComponentTypeId", + "details": { + "name": "Get Mixed Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MultiPositionBehaviorType_Blended.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MultiPositionBehaviorType_Blended.names index 7e95390e2e..3d14e91e22 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MultiPositionBehaviorType_Blended.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MultiPositionBehaviorType_Blended.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MultiPositionBehaviorType_Blended", + "base": "MultiPositionBehaviorType_Blended", "context": "Constant", "variant": "", "details": { - "name": "MultiPositionBehaviorType_Blended::Getter", - "category": "Constants" - } + "name": "Blended", + "category": "Constants/Multi Position Behavior Type" + }, + "methods": [ + { + "base": "GetMultiPositionBehaviorType_Blended", + "details": { + "name": "Blended" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MultiPositionBehaviorType_Separate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MultiPositionBehaviorType_Separate.names index 476c8b91ef..15577ca173 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MultiPositionBehaviorType_Separate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/MultiPositionBehaviorType_Separate.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "MultiPositionBehaviorType_Separate", + "base": "MultiPositionBehaviorType_Separate", "context": "Constant", "variant": "", "details": { - "name": "MultiPositionBehaviorType_Separate::Getter", - "category": "Constants" - } + "name": "Separate", + "category": "Constants/Multi Position Behavior Type" + }, + "methods": [ + { + "base": "GetMultiPositionBehaviorType_Separate", + "details": { + "name": "Separate" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/OcclusionCullingPlaneComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/OcclusionCullingPlaneComponentTypeId.names index 471b5d63d3..685d61f8a7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/OcclusionCullingPlaneComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/OcclusionCullingPlaneComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "OcclusionCullingPlaneComponentTypeId", + "base": "OcclusionCullingPlaneComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "OcclusionCullingPlaneComponentTypeId::Getter", - "category": "Constants" - } + "name": "Occlusion Culling Plane Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetOcclusionCullingPlaneComponentTypeId", + "details": { + "name": "Get Occlusion Culling Plane Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PerlinGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PerlinGradientComponentTypeId.names index 0779352f77..d16cca8ebb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PerlinGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PerlinGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PerlinGradientComponentTypeId", + "base": "PerlinGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "PerlinGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Perlin Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetPerlinGradientComponentTypeId", + "details": { + "name": "Get Perlin Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Candela.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Candela.names index 0923efc251..5312a86409 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Candela.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Candela.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PhotometricUnit_Candela", + "base": "PhotometricUnit_Candela", "context": "Constant", "variant": "", "details": { - "name": "PhotometricUnit_Candela::Getter", - "category": "Constants" - } + "name": "Candela", + "category": "Constants/Photometric Unit" + }, + "methods": [ + { + "base": "GetPhotometricUnit_Candela", + "details": { + "name": "Candela" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Ev100_Illuminance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Ev100_Illuminance.names index 841af8eb4d..ffb2e3875f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Ev100_Illuminance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Ev100_Illuminance.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PhotometricUnit_Ev100_Illuminance", + "base": "PhotometricUnit_Ev100_Illuminance", "context": "Constant", "variant": "", "details": { - "name": "PhotometricUnit_Ev100_Illuminance::Getter", - "category": "Constants" - } + "name": "Ev 100 Illuminance", + "category": "Constants/Photometric Unit" + }, + "methods": [ + { + "base": "GetPhotometricUnit_Ev100_Illuminance", + "details": { + "name": "Ev 100 Illuminance" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Ev100_Luminance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Ev100_Luminance.names index b6df92e7d2..b0a0fe6a47 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Ev100_Luminance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Ev100_Luminance.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PhotometricUnit_Ev100_Luminance", + "base": "PhotometricUnit_Ev100_Luminance", "context": "Constant", "variant": "", "details": { - "name": "PhotometricUnit_Ev100_Luminance::Getter", - "category": "Constants" - } + "name": "Ev 100 Luminance", + "category": "Constants/Photometric Unit" + }, + "methods": [ + { + "base": "GetPhotometricUnit_Ev100_Luminance", + "details": { + "name": "Ev 100 Luminance" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Lumen.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Lumen.names index 2d06fd13a3..9e67c249af 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Lumen.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Lumen.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PhotometricUnit_Lumen", + "base": "PhotometricUnit_Lumen", "context": "Constant", "variant": "", "details": { - "name": "PhotometricUnit_Lumen::Getter", - "category": "Constants" - } + "name": "Lumen", + "category": "Constants/Photometric Unit" + }, + "methods": [ + { + "base": "GetPhotometricUnit_Lumen", + "details": { + "name": "Lumen" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Lux.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Lux.names index b16b5a6b9e..a82a2cbc0a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Lux.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Lux.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PhotometricUnit_Lux", + "base": "PhotometricUnit_Lux", "context": "Constant", "variant": "", "details": { - "name": "PhotometricUnit_Lux::Getter", - "category": "Constants" - } + "name": "Lux", + "category": "Constants/Photometric Unit" + }, + "methods": [ + { + "base": "GetPhotometricUnit_Lux", + "details": { + "name": "Lux" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Nit.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Nit.names index 33af8d043e..3a66270b8a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Nit.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Nit.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PhotometricUnit_Nit", + "base": "PhotometricUnit_Nit", "context": "Constant", "variant": "", "details": { - "name": "PhotometricUnit_Nit::Getter", - "category": "Constants" - } + "name": "Nit", + "category": "Constants/Photometric Unit" + }, + "methods": [ + { + "base": "GetPhotometricUnit_Nit", + "details": { + "name": "Nit" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Unknown.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Unknown.names index d748e688e2..f07cfd2be4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Unknown.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhotometricUnit_Unknown.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PhotometricUnit_Unknown", + "base": "PhotometricUnit_Unknown", "context": "Constant", "variant": "", "details": { - "name": "PhotometricUnit_Unknown::Getter", - "category": "Constants" - } + "name": "Unknown", + "category": "Constants/Photometric Unit" + }, + "methods": [ + { + "base": "GetPhotometricUnit_Unknown", + "details": { + "name": "Unknown" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhysicalSkyComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhysicalSkyComponentTypeId.names index 05b71703e9..acd3e30945 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhysicalSkyComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PhysicalSkyComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PhysicalSkyComponentTypeId", + "base": "PhysicalSkyComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "PhysicalSkyComponentTypeId::Getter", - "category": "Constants" - } + "name": "Physical Sky Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetPhysicalSkyComponentTypeId", + "details": { + "name": "Get Physical Sky Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PositionModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PositionModifierComponentTypeId.names new file mode 100644 index 0000000000..3934036ae6 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PositionModifierComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "PositionModifierComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Position Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetPositionModifierComponentTypeId", + "details": { + "name": "Get Position Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PostFxLayerComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PostFxLayerComponentTypeId.names index b45a4432ef..a09eb0fe51 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PostFxLayerComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PostFxLayerComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PostFxLayerComponentTypeId", + "base": "PostFxLayerComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "PostFxLayerComponentTypeId::Getter", - "category": "Constants" - } + "name": "Post Fx Layer Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetPostFxLayerComponentTypeId", + "details": { + "name": "Get Post Fx Layer Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PosterizeGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PosterizeGradientComponentTypeId.names index 1325364e24..28956d8520 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PosterizeGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/PosterizeGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "PosterizeGradientComponentTypeId", + "base": "PosterizeGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "PosterizeGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Posterize Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetPosterizeGradientComponentTypeId", + "details": { + "name": "Get Posterize Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_AWSCognitoIDP.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_AWSCognitoIDP.names new file mode 100644 index 0000000000..35dd35606c --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_AWSCognitoIDP.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "ProviderNameEnum_AWSCognitoIDP", + "context": "Constant", + "variant": "", + "details": { + "name": "AWS Cognito IDP", + "category": "Constants/Provider Name" + }, + "methods": [ + { + "base": "GetProviderNameEnum_AWSCognitoIDP", + "details": { + "name": "AWS Cognito IDP" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_Google.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_Google.names new file mode 100644 index 0000000000..11b91a902c --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_Google.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "ProviderNameEnum_Google", + "context": "Constant", + "variant": "", + "details": { + "name": "Google", + "category": "Constants/Provider Name" + }, + "methods": [ + { + "base": "GetProviderNameEnum_Google", + "details": { + "name": "Google" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_LoginWithAmazon.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_LoginWithAmazon.names new file mode 100644 index 0000000000..9f63f5a2ad --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_LoginWithAmazon.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "ProviderNameEnum_LoginWithAmazon", + "context": "Constant", + "variant": "", + "details": { + "name": "Amazon", + "category": "Constants/Provider Name" + }, + "methods": [ + { + "base": "GetProviderNameEnum_LoginWithAmazon", + "details": { + "name": "Amazon" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_None.names new file mode 100644 index 0000000000..5f7f21d88a --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ProviderNameEnum_None.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "ProviderNameEnum_None", + "context": "Constant", + "variant": "", + "details": { + "name": "None", + "category": "Constants/Provider Name" + }, + "methods": [ + { + "base": "GetProviderNameEnum_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/QuadShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/QuadShapeComponentTypeId.names index 5d98a25b38..913f9c6a8e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/QuadShapeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/QuadShapeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "QuadShapeComponentTypeId", + "base": "QuadShapeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "QuadShapeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Quad Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetQuadShapeComponentTypeId", + "details": { + "name": "Get Quad Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RadiusWeightModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RadiusWeightModifierComponentTypeId.names index 43cfe542c0..b47fe93984 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RadiusWeightModifierComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RadiusWeightModifierComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "RadiusWeightModifierComponentTypeId", + "base": "RadiusWeightModifierComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "RadiusWeightModifierComponentTypeId::Getter", - "category": "Constants" - } + "name": "Radius Weight Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetRadiusWeightModifierComponentTypeId", + "details": { + "name": "Get Radius Weight Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RandomGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RandomGradientComponentTypeId.names index 58045dbdec..625f76bba8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RandomGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RandomGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "RandomGradientComponentTypeId", + "base": "RandomGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "RandomGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Random Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetRandomGradientComponentTypeId", + "details": { + "name": "Get Random Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReferenceGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReferenceGradientComponentTypeId.names index 89e3a955d1..b96e97dfaa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReferenceGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReferenceGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ReferenceGradientComponentTypeId", + "base": "ReferenceGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ReferenceGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Reference Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetReferenceGradientComponentTypeId", + "details": { + "name": "Get Reference Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReferenceShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReferenceShapeComponentTypeId.names new file mode 100644 index 0000000000..bbcfd7f88c --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReferenceShapeComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "ReferenceShapeComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Reference Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetReferenceShapeComponentTypeId", + "details": { + "name": "Get Reference Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReflectionProbeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReflectionProbeComponentTypeId.names index 9d8cf61239..5b6d58c067 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReflectionProbeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ReflectionProbeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ReflectionProbeComponentTypeId", + "base": "ReflectionProbeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ReflectionProbeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Reflection Probe Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetReflectionProbeComponentTypeId", + "details": { + "name": "Get Reflection Probe Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RotationModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RotationModifierComponentTypeId.names new file mode 100644 index 0000000000..18c7ac1f82 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/RotationModifierComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "RotationModifierComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Rotation Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetRotationModifierComponentTypeId", + "details": { + "name": "Get Rotation Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SPHERE.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SPHERE.names new file mode 100644 index 0000000000..4743d85db3 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SPHERE.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "SPHERE", + "context": "Constant", + "variant": "", + "details": { + "name": "Sphere", + "category": "Constants/White Box" + }, + "methods": [ + { + "base": "GetSPHERE", + "details": { + "name": "Sphere" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ScaleModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ScaleModifierComponentTypeId.names new file mode 100644 index 0000000000..cee50e1569 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ScaleModifierComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "ScaleModifierComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Scale Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetScaleModifierComponentTypeId", + "details": { + "name": "Get Scale Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_ESM.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_ESM.names index 3542ed76bb..9d16d36c6b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_ESM.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_ESM.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowFilterMethod_ESM", + "base": "ShadowFilterMethod_ESM", "context": "Constant", "variant": "", "details": { - "name": "ShadowFilterMethod_ESM::Getter", - "category": "Constants" - } + "name": "ESM", + "category": "Constants/Shadowmap/Filter" + }, + "methods": [ + { + "base": "GetShadowFilterMethod_ESM", + "details": { + "name": "ESM" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_ESM_PCF.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_ESM_PCF.names index 57736a0912..75750dd2a2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_ESM_PCF.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_ESM_PCF.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowFilterMethod_ESM_PCF", + "base": "ShadowFilterMethod_ESM_PCF", "context": "Constant", "variant": "", "details": { - "name": "ShadowFilterMethod_ESM_PCF::Getter", - "category": "Constants" - } + "name": "ESM_PCF", + "category": "Constants/Shadowmap/Filter" + }, + "methods": [ + { + "base": "GetShadowFilterMethod_ESM_PCF", + "details": { + "name": "ESM_PCF" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_None.names index 90a1da18fe..f604ed1147 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowFilterMethod_None", + "base": "ShadowFilterMethod_None", "context": "Constant", "variant": "", "details": { - "name": "ShadowFilterMethod_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/Shadowmap/Filter" + }, + "methods": [ + { + "base": "GetShadowFilterMethod_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_PCF.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_PCF.names index 0600bfc8d2..7d63db3ad7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_PCF.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowFilterMethod_PCF.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowFilterMethod_PCF", + "base": "ShadowFilterMethod_PCF", "context": "Constant", "variant": "", "details": { - "name": "ShadowFilterMethod_PCF::Getter", - "category": "Constants" - } + "name": "PCF", + "category": "Constants/Shadowmap/Filter" + }, + "methods": [ + { + "base": "GetShadowFilterMethod_PCF", + "details": { + "name": "PCF" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_1024.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_1024.names index 0814f06cce..82fcb11aaf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_1024.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_1024.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowmapSize_1024", + "base": "ShadowmapSize_1024", "context": "Constant", "variant": "", "details": { - "name": "ShadowmapSize_1024::Getter", - "category": "Constants" - } + "name": "1024", + "category": "Constants/Shadowmap/Size" + }, + "methods": [ + { + "base": "GetShadowmapSize_1024", + "details": { + "name": "1024" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_2045.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_2045.names index 4ed139c23a..545ecbe5f7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_2045.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_2045.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowmapSize_2045", + "base": "ShadowmapSize_2045", "context": "Constant", "variant": "", "details": { - "name": "ShadowmapSize_2045::Getter", - "category": "Constants" - } + "name": "2045", + "category": "Constants/Shadowmap/Size" + }, + "methods": [ + { + "base": "GetShadowmapSize_2045", + "details": { + "name": "2045" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_256.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_256.names index 174dcbd1e7..26b11da3d9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_256.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_256.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowmapSize_256", + "base": "ShadowmapSize_256", "context": "Constant", "variant": "", "details": { - "name": "ShadowmapSize_256::Getter", - "category": "Constants" - } + "name": "256", + "category": "Constants/Shadowmap/Size" + }, + "methods": [ + { + "base": "GetShadowmapSize_256", + "details": { + "name": "256" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_512.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_512.names index 476a558ad6..541b28b10d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_512.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_512.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowmapSize_512", + "base": "ShadowmapSize_512", "context": "Constant", "variant": "", "details": { - "name": "ShadowmapSize_512::Getter", - "category": "Constants" - } + "name": "512", + "category": "Constants/Shadowmap/Size" + }, + "methods": [ + { + "base": "GetShadowmapSize_512", + "details": { + "name": "512" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_None.names index a1f9c51c8f..092d435e9d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShadowmapSize_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShadowmapSize_None", + "base": "ShadowmapSize_None", "context": "Constant", "variant": "", "details": { - "name": "ShadowmapSize_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/Shadowmap/Size" + }, + "methods": [ + { + "base": "GetShadowmapSize_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", + "details": { + "name": "unsigned int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeAreaFalloffGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeAreaFalloffGradientComponentTypeId.names index a1e9881e41..ca7dc09c50 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeAreaFalloffGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeAreaFalloffGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShapeAreaFalloffGradientComponentTypeId", + "base": "ShapeAreaFalloffGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ShapeAreaFalloffGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Shape Area Falloff Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetShapeAreaFalloffGradientComponentTypeId", + "details": { + "name": "Get Shape Area Falloff Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeChangeReasons_ShapeChanged.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeChangeReasons_ShapeChanged.names index 700decf418..310ae3155b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeChangeReasons_ShapeChanged.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeChangeReasons_ShapeChanged.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShapeChangeReasons_ShapeChanged", + "base": "ShapeChangeReasons_ShapeChanged", "context": "Constant", "variant": "", "details": { - "name": "ShapeChangeReasons_ShapeChanged::Getter", - "category": "Constants" - } + "name": "Shape Change Reasons_ Shape Changed", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetShapeChangeReasons_ShapeChanged", + "details": { + "name": "Get Shape Change Reasons_ Shape Changed" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeChangeReasons_TransformChanged.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeChangeReasons_TransformChanged.names index 441ee1a3bc..864d389080 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeChangeReasons_TransformChanged.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeChangeReasons_TransformChanged.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShapeChangeReasons_TransformChanged", + "base": "ShapeChangeReasons_TransformChanged", "context": "Constant", "variant": "", "details": { - "name": "ShapeChangeReasons_TransformChanged::Getter", - "category": "Constants" - } + "name": "Shape Change Reasons_ Transform Changed", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetShapeChangeReasons_TransformChanged", + "details": { + "name": "Get Shape Change Reasons_ Transform Changed" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeIntersectionFilterComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeIntersectionFilterComponentTypeId.names new file mode 100644 index 0000000000..8c5ef12adf --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeIntersectionFilterComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "ShapeIntersectionFilterComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Shape Intersection Filter Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetShapeIntersectionFilterComponentTypeId", + "details": { + "name": "Get Shape Intersection Filter Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Box.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Box.names index 1cb9b145a3..233bc2c76f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Box.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Box.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeType_Box", + "base": "ShapeType_Box", "context": "Constant", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ShapeType_Box", + "base": "ShapeType_Box", "details": { "name": "Get Shape Type: Box", "subtitle": "Shape Type" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Cylinder.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Cylinder.names index a86b0ef92f..a4e02a53da 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Cylinder.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Cylinder.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeType_Cylinder", + "base": "ShapeType_Cylinder", "context": "Constant", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ShapeType_Cylinder", + "base": "ShapeType_Cylinder", "details": { "name": "Get Shape Type: Cylinder", "subtitle": "Shape Type" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Heightfield.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Heightfield.names new file mode 100644 index 0000000000..8ede2d9b87 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Heightfield.names @@ -0,0 +1,30 @@ +{ + "entries": [ + { + "base": "ShapeType_Heightfield", + "context": "Constant", + "variant": "", + "details": { + "name": "Get Shape Type: Heightfield", + "category": "Constants/Physics" + }, + "methods": [ + { + "base": "GetShapeType_Heightfield", + "details": { + "name": "Get Shape Type: Heightfield", + "subtitle": "Shape Type" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "Shape Type" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_PhysicsAsset.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_PhysicsAsset.names index ad0eb63c86..9ac02b4f53 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_PhysicsAsset.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_PhysicsAsset.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeType_PhysicsAsset", + "base": "ShapeType_PhysicsAsset", "context": "Constant", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ShapeType_PhysicsAsset", + "base": "ShapeType_PhysicsAsset", "details": { "name": "Get Shape Type: Physics Asset", "subtitle": "Shape Type" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Sphere.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Sphere.names index f66c73f0b2..f2441aacee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Sphere.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeType_Sphere.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "ShapeType_Sphere", + "base": "ShapeType_Sphere", "context": "Constant", "variant": "", "details": { @@ -10,7 +10,7 @@ }, "methods": [ { - "key": "ShapeType_Sphere", + "base": "ShapeType_Sphere", "details": { "name": "SGet Shape Type: Sphere", "subtitle": "Shape Type" diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeWeightModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeWeightModifierComponentTypeId.names index 947f0d1a0d..bd0f817dfd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeWeightModifierComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ShapeWeightModifierComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ShapeWeightModifierComponentTypeId", + "base": "ShapeWeightModifierComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ShapeWeightModifierComponentTypeId::Getter", - "category": "Constants" - } + "name": "Shape Weight Modifier Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetShapeWeightModifierComponentTypeId", + "details": { + "name": "Get Shape Weight Modifier Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SlopeAlignmentModifierComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SlopeAlignmentModifierComponentTypeId.names index 74e704cb34..219f05a14b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SlopeAlignmentModifierComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SlopeAlignmentModifierComponentTypeId.names @@ -1,23 +1,24 @@ { "entries": [ { - "key": "SlopeAlignmentModifierComponentTypeId", + "base": "SlopeAlignmentModifierComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "" + "name": "Slope Alignment Modifier Component Type Id", + "category": "Constants/Editor" }, "methods": [ { - "key": "SlopeAlignmentModifierComponentTypeId", + "base": "GetSlopeAlignmentModifierComponentTypeId", "details": { - "name": "SlopeAlignmentModifierComponentTypeId::Getter" + "name": "Get Slope Alignment Modifier Component Type Id" }, "results": [ { "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", "details": { - "name": "AZ::Uuid" + "name": "AZ:: Uuid" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SmoothStepGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SmoothStepGradientComponentTypeId.names index 0e2ee25219..b9cf0e8631 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SmoothStepGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SmoothStepGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SmoothStepGradientComponentTypeId", + "base": "SmoothStepGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "SmoothStepGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Smooth Step Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSmoothStepGradientComponentTypeId", + "details": { + "name": "Get Smooth Step Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SpawnerComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SpawnerComponentTypeId.names index 72a66d38e8..6cab8d6b00 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SpawnerComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SpawnerComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SpawnerComponentTypeId", + "base": "SpawnerComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "SpawnerComponentTypeId::Getter", - "category": "Constants" - } + "name": "Spawner Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSpawnerComponentTypeId", + "details": { + "name": "Get Spawner Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SphereShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SphereShapeComponentTypeId.names index cedd42ef6a..52f9ed8c57 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SphereShapeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SphereShapeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SphereShapeComponentTypeId", + "base": "SphereShapeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "SphereShapeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Sphere Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSphereShapeComponentTypeId", + "details": { + "name": "Get Sphere Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SsaoComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SsaoComponentTypeId.names index 525dbdcdd0..bce10c89ca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SsaoComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SsaoComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SsaoComponentTypeId", + "base": "SsaoComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "SsaoComponentTypeId::Getter", - "category": "Constants" - } + "name": "Ssao Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSsaoComponentTypeId", + "details": { + "name": "Get Ssao Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Decrement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Decrement.names index da6699bfbe..83cd8924db 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Decrement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Decrement.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_Decrement", + "base": "StencilOp_Decrement", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_Decrement::Getter", - "category": "Constants" - } + "name": "Decrement", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_Decrement", + "details": { + "name": "Decrement" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_DecrementSaturate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_DecrementSaturate.names index 46fce46fc3..8bbc398180 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_DecrementSaturate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_DecrementSaturate.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_DecrementSaturate", + "base": "StencilOp_DecrementSaturate", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_DecrementSaturate::Getter", - "category": "Constants" - } + "name": "Decrement Saturate", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_DecrementSaturate", + "details": { + "name": "Decrement Saturate" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Increment.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Increment.names index 9d20ca70fb..7b034e8a45 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Increment.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Increment.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_Increment", + "base": "StencilOp_Increment", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_Increment::Getter", - "category": "Constants" - } + "name": "Increment", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_Increment", + "details": { + "name": "Increment" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_IncrementSaturate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_IncrementSaturate.names index 77bfc0a95e..110e816592 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_IncrementSaturate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_IncrementSaturate.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_IncrementSaturate", + "base": "StencilOp_IncrementSaturate", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_IncrementSaturate::Getter", - "category": "Constants" - } + "name": "Increment Saturate", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_IncrementSaturate", + "details": { + "name": "Increment Saturate" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Invalid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Invalid.names index 7f6e5fc38a..e92a5b3526 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Invalid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Invalid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_Invalid", + "base": "StencilOp_Invalid", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_Invalid::Getter", - "category": "Constants" - } + "name": "Invalid", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_Invalid", + "details": { + "name": "Invalid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Invert.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Invert.names index 021e089ac1..adfaf23d6a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Invert.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Invert.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_Invert", + "base": "StencilOp_Invert", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_Invert::Getter", - "category": "Constants" - } + "name": "Invert", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_Invert", + "details": { + "name": "Invert" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Keep.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Keep.names index e4e4fc1956..be2d814bad 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Keep.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Keep.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_Keep", + "base": "StencilOp_Keep", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_Keep::Getter", - "category": "Constants" - } + "name": "Keep", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_Keep", + "details": { + "name": "Keep" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Replace.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Replace.names index 331397d027..307677368f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Replace.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Replace.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_Replace", + "base": "StencilOp_Replace", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_Replace::Getter", - "category": "Constants" - } + "name": "Replace", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_Replace", + "details": { + "name": "Replace" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Zero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Zero.names index 9d17600aad..a4a62b177a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Zero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/StencilOp_Zero.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "StencilOp_Zero", + "base": "StencilOp_Zero", "context": "Constant", "variant": "", "details": { - "name": "StencilOp_Zero::Getter", - "category": "Constants" - } + "name": "Zero", + "category": "Constants/Stencil Op" + }, + "methods": [ + { + "base": "GetStencilOp_Zero", + "details": { + "name": "Zero" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceAltitudeFilterComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceAltitudeFilterComponentTypeId.names new file mode 100644 index 0000000000..cb55df8149 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceAltitudeFilterComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "SurfaceAltitudeFilterComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Surface Altitude Filter Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSurfaceAltitudeFilterComponentTypeId", + "details": { + "name": "Get Surface Altitude Filter Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceAltitudeGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceAltitudeGradientComponentTypeId.names index 01d0ca9912..012f58f387 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceAltitudeGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceAltitudeGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SurfaceAltitudeGradientComponentTypeId", + "base": "SurfaceAltitudeGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "SurfaceAltitudeGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Surface Altitude Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSurfaceAltitudeGradientComponentTypeId", + "details": { + "name": "Get Surface Altitude Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskDepthFilterComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskDepthFilterComponentTypeId.names new file mode 100644 index 0000000000..54af468172 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskDepthFilterComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "SurfaceMaskDepthFilterComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Surface Mask Depth Filter Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSurfaceMaskDepthFilterComponentTypeId", + "details": { + "name": "Get Surface Mask Depth Filter Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskFilterComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskFilterComponentTypeId.names new file mode 100644 index 0000000000..6c8b21cde1 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskFilterComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "SurfaceMaskFilterComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Surface Mask Filter Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSurfaceMaskFilterComponentTypeId", + "details": { + "name": "Get Surface Mask Filter Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskGradientComponentTypeId.names index d98abc6e80..d8784fe67e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceMaskGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SurfaceMaskGradientComponentTypeId", + "base": "SurfaceMaskGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "SurfaceMaskGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Surface Mask Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSurfaceMaskGradientComponentTypeId", + "details": { + "name": "Get Surface Mask Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceSlopeFilterComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceSlopeFilterComponentTypeId.names new file mode 100644 index 0000000000..d55caa7830 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceSlopeFilterComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "SurfaceSlopeFilterComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Surface Slope Filter Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSurfaceSlopeFilterComponentTypeId", + "details": { + "name": "Get Surface Slope Filter Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceSlopeGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceSlopeGradientComponentTypeId.names index 29955c91f4..cf856cfbbf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceSlopeGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SurfaceSlopeGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SurfaceSlopeGradientComponentTypeId", + "base": "SurfaceSlopeGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "SurfaceSlopeGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Surface Slope Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetSurfaceSlopeGradientComponentTypeId", + "details": { + "name": "Get Surface Slope Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Android.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Android.names index b615174731..48ff4a80d5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Android.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Android.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigPlatform_Android", + "base": "SystemConfigPlatform_Android", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigPlatform_Android::Getter", - "category": "Constants" - } + "name": "Android", + "category": "Constants/System Configuration" + }, + "methods": [ + { + "base": "GetSystemConfigPlatform_Android", + "details": { + "name": "Android" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_InvalidPlatform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_InvalidPlatform.names index ebb0dc01bf..72b62a5d03 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_InvalidPlatform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_InvalidPlatform.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigPlatform_InvalidPlatform", + "base": "SystemConfigPlatform_InvalidPlatform", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigPlatform_InvalidPlatform::Getter", - "category": "Constants" - } + "name": "Invalid Platform", + "category": "Constants/System Configuration" + }, + "methods": [ + { + "base": "GetSystemConfigPlatform_InvalidPlatform", + "details": { + "name": "Invalid Platform" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Ios.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Ios.names index 2de01a41e9..f8c15e5505 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Ios.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Ios.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigPlatform_Ios", + "base": "SystemConfigPlatform_Ios", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigPlatform_Ios::Getter", - "category": "Constants" - } + "name": "Ios", + "category": "Constants/System Configuration" + }, + "methods": [ + { + "base": "GetSystemConfigPlatform_Ios", + "details": { + "name": "Ios" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Mac.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Mac.names index 50dc9a573f..d30dd7446b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Mac.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Mac.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigPlatform_Mac", + "base": "SystemConfigPlatform_Mac", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigPlatform_Mac::Getter", - "category": "Constants" - } + "name": "Mac", + "category": "Constants/System Configuration" + }, + "methods": [ + { + "base": "GetSystemConfigPlatform_Mac", + "details": { + "name": "Mac" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_OsxMetal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_OsxMetal.names index 8005565fca..8d2bd15940 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_OsxMetal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_OsxMetal.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigPlatform_OsxMetal", + "base": "SystemConfigPlatform_OsxMetal", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigPlatform_OsxMetal::Getter", - "category": "Constants" - } + "name": "Osx Metal", + "category": "Constants/System Configuration" + }, + "methods": [ + { + "base": "GetSystemConfigPlatform_OsxMetal", + "details": { + "name": "Osx Metal" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Pc.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Pc.names index a1b962ea90..1c0e05387d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Pc.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Pc.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigPlatform_Pc", + "base": "SystemConfigPlatform_Pc", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigPlatform_Pc::Getter", - "category": "Constants" - } + "name": "Pc", + "category": "Constants/System Configuration" + }, + "methods": [ + { + "base": "GetSystemConfigPlatform_Pc", + "details": { + "name": "Pc" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Provo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Provo.names index 46e8d46b17..84757fb237 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Provo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigPlatform_Provo.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigPlatform_Provo", + "base": "SystemConfigPlatform_Provo", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigPlatform_Provo::Getter", - "category": "Constants" - } + "name": "Provo", + "category": "Constants/System Configuration" + }, + "methods": [ + { + "base": "GetSystemConfigPlatform_Provo", + "details": { + "name": "Provo" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Auto.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Auto.names index 51484e63d5..6362ad592f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Auto.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Auto.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigSpec_Auto", + "base": "SystemConfigSpec_Auto", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigSpec_Auto::Getter", - "category": "Constants" - } + "name": "Auto", + "category": "Constants/System Spec" + }, + "methods": [ + { + "base": "GetSystemConfigSpec_Auto", + "details": { + "name": "Auto" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_High.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_High.names index 80c2de7669..24ca308d2a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_High.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_High.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigSpec_High", + "base": "SystemConfigSpec_High", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigSpec_High::Getter", - "category": "Constants" - } + "name": "High", + "category": "Constants/System Spec" + }, + "methods": [ + { + "base": "GetSystemConfigSpec_High", + "details": { + "name": "High" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Low.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Low.names index 5a4dee45d5..17250ade92 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Low.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Low.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigSpec_Low", + "base": "SystemConfigSpec_Low", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigSpec_Low::Getter", - "category": "Constants" - } + "name": "Low", + "category": "Constants/System Spec" + }, + "methods": [ + { + "base": "GetSystemConfigSpec_Low", + "details": { + "name": "Low" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Medium.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Medium.names index 52485ed95b..dcdae1a975 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Medium.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_Medium.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigSpec_Medium", + "base": "SystemConfigSpec_Medium", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigSpec_Medium::Getter", - "category": "Constants" - } + "name": "Medium", + "category": "Constants/System Spec" + }, + "methods": [ + { + "base": "GetSystemConfigSpec_Medium", + "details": { + "name": "Medium" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_VeryHigh.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_VeryHigh.names index 9d71dadc2d..44c36f472c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_VeryHigh.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemConfigSpec_VeryHigh.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "SystemConfigSpec_VeryHigh", + "base": "SystemConfigSpec_VeryHigh", "context": "Constant", "variant": "", "details": { - "name": "SystemConfigSpec_VeryHigh::Getter", - "category": "Constants" - } + "name": "Very High", + "category": "Constants/System Spec" + }, + "methods": [ + { + "base": "GetSystemConfigSpec_VeryHigh", + "details": { + "name": "Very High" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemEntityId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemEntityId.names index 3a6a3c2c04..fecc69eb1c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemEntityId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/SystemEntityId.names @@ -1,13 +1,30 @@ { "entries": [ { - "key": "SystemEntityId", + "base": "SystemEntityId", "context": "Constant", "variant": "", "details": { - "name": "SystemEntityId::Getter", - "category": "Constants" - } + "name": "System Entity Id", + "category": "Constants/System" + }, + "methods": [ + { + "base": "GetSystemEntityId", + "details": { + "name": "Get System Entity Id" + }, + "results": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TETRAHEDRON.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TETRAHEDRON.names new file mode 100644 index 0000000000..8506904701 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TETRAHEDRON.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "TETRAHEDRON", + "context": "Constant", + "variant": "", + "details": { + "name": "Tetrahedron", + "category": "Constants/White Box" + }, + "methods": [ + { + "base": "GetTETRAHEDRON", + "details": { + "name": "Tetrahedron" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ThresholdGradientComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ThresholdGradientComponentTypeId.names index c40a8f1281..be9c791c63 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ThresholdGradientComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/ThresholdGradientComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "ThresholdGradientComponentTypeId", + "base": "ThresholdGradientComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "ThresholdGradientComponentTypeId::Getter", - "category": "Constants" - } + "name": "Threshold Gradient Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetThresholdGradientComponentTypeId", + "details": { + "name": "Get Threshold Gradient Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformComponentTypeId.names index a140864cdc..b1039ce129 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformComponentTypeId", + "base": "TransformComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "TransformComponentTypeId::Getter", - "category": "Constants" - } + "name": "Transform Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetTransformComponentTypeId", + "details": { + "name": "Get Transform Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Rotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Rotation.names index a573b13ba1..3a9f17cf87 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Rotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Rotation.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformMode_Rotation", + "base": "TransformMode_Rotation", "context": "Constant", "variant": "", "details": { - "name": "TransformMode_Rotation::Getter", - "category": "Constants" - } + "name": "Rotation", + "category": "Constants/Transform/Mode" + }, + "methods": [ + { + "base": "GetTransformMode_Rotation", + "details": { + "name": "Rotation" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Scale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Scale.names index d04c443780..45c665434a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Scale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Scale.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformMode_Scale", + "base": "TransformMode_Scale", "context": "Constant", "variant": "", "details": { - "name": "TransformMode_Scale::Getter", - "category": "Constants" - } + "name": "Scale", + "category": "Constants/Transform/Mode" + }, + "methods": [ + { + "base": "GetTransformMode_Scale", + "details": { + "name": "Scale" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Translation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Translation.names index 05fb942bd8..fbcf88a7da 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Translation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformMode_Translation.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformMode_Translation", + "base": "TransformMode_Translation", "context": "Constant", "variant": "", "details": { - "name": "TransformMode_Translation::Getter", - "category": "Constants" - } + "name": "Translation", + "category": "Constants/Transform/Mode" + }, + "methods": [ + { + "base": "GetTransformMode_Translation", + "details": { + "name": "Translation" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformPivot_Center.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformPivot_Center.names index a2aef08ec4..0c88ae1d0b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformPivot_Center.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformPivot_Center.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformPivot_Center", + "base": "TransformPivot_Center", "context": "Constant", "variant": "", "details": { - "name": "TransformPivot_Center::Getter", - "category": "Constants" - } + "name": "Center", + "category": "Constants/Transform/Pivot" + }, + "methods": [ + { + "base": "GetTransformPivot_Center", + "details": { + "name": "Center" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformPivot_Object.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformPivot_Object.names index 010e4a0eb2..340bc2dd33 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformPivot_Object.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformPivot_Object.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformPivot_Object", + "base": "TransformPivot_Object", "context": "Constant", "variant": "", "details": { - "name": "TransformPivot_Object::Getter", - "category": "Constants" - } + "name": "Object", + "category": "Constants/Transform/Pivot" + }, + "methods": [ + { + "base": "GetTransformPivot_Object", + "details": { + "name": "Object" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_All.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_All.names index 4161f154b3..0d024e0bbc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_All.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_All.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformRefreshType_All", + "base": "TransformRefreshType_All", "context": "Constant", "variant": "", "details": { - "name": "TransformRefreshType_All::Getter", - "category": "Constants" - } + "name": "All", + "category": "Constants/Transform/Refresh Type" + }, + "methods": [ + { + "base": "GetTransformRefreshType_All", + "details": { + "name": "All" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_Orientation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_Orientation.names index 920fc60dfd..e80e1fc12d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_Orientation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_Orientation.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformRefreshType_Orientation", + "base": "TransformRefreshType_Orientation", "context": "Constant", "variant": "", "details": { - "name": "TransformRefreshType_Orientation::Getter", - "category": "Constants" - } + "name": "Orientation", + "category": "Constants/Transform/Refresh Type" + }, + "methods": [ + { + "base": "GetTransformRefreshType_Orientation", + "details": { + "name": "Orientation" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_Translation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_Translation.names index 80b256f896..a4ce9607e3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_Translation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TransformRefreshType_Translation.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TransformRefreshType_Translation", + "base": "TransformRefreshType_Translation", "context": "Constant", "variant": "", "details": { - "name": "TransformRefreshType_Translation::Getter", - "category": "Constants" - } + "name": "Translation", + "category": "Constants/Transform/Refresh Type" + }, + "methods": [ + { + "base": "GetTransformRefreshType_Translation", + "details": { + "name": "Translation" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TubeShapeComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TubeShapeComponentTypeId.names index dad5748f53..d0c4f47888 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TubeShapeComponentTypeId.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/TubeShapeComponentTypeId.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "TubeShapeComponentTypeId", + "base": "TubeShapeComponentTypeId", "context": "Constant", "variant": "", "details": { - "name": "TubeShapeComponentTypeId::Getter", - "category": "Constants" - } + "name": "Tube Shape Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetTubeShapeComponentTypeId", + "details": { + "name": "Get Tube Shape Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/UiLayoutCellUnspecifiedSize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/UiLayoutCellUnspecifiedSize.names index d9b6976e89..63d58ba29a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/UiLayoutCellUnspecifiedSize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/UiLayoutCellUnspecifiedSize.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "UiLayoutCellUnspecifiedSize", + "base": "UiLayoutCellUnspecifiedSize", "context": "Constant", "variant": "", "details": { - "name": "UiLayoutCellUnspecifiedSize::Getter", - "category": "Constants" - } + "name": "Cell Unspecified Size", + "category": "Constants/UI/Ui Layout" + }, + "methods": [ + { + "base": "GetUiLayoutCellUnspecifiedSize", + "details": { + "name": "Layout Cell Unspecified Size" + }, + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "float" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/VegetationSpawnerComponentTypeId.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/VegetationSpawnerComponentTypeId.names new file mode 100644 index 0000000000..5b9e9394bd --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/VegetationSpawnerComponentTypeId.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "VegetationSpawnerComponentTypeId", + "context": "Constant", + "variant": "", + "details": { + "name": "Vegetation Spawner Component Type Id", + "category": "Constants/Editor" + }, + "methods": [ + { + "base": "GetVegetationSpawnerComponentTypeId", + "details": { + "name": "Get Vegetation Spawner Component Type Id" + }, + "results": [ + { + "typeid": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}", + "details": { + "name": "AZ:: Uuid" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_GotoEndTime.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_GotoEndTime.names index 89b6606748..4a5990bb0d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_GotoEndTime.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_GotoEndTime.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eSSB_GotoEndTime", + "base": "eSSB_GotoEndTime", "context": "Constant", "variant": "", "details": { - "name": "eSSB_GotoEndTime::Getter", - "category": "Constants" - } + "name": "Goto End Time", + "category": "Constants/UI/Animation/Sequence Stop Behavior" + }, + "methods": [ + { + "base": "GeteSSB_GotoEndTime", + "details": { + "name": "Goto End Time" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_GotoStartTime.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_GotoStartTime.names index 69c4ae2f1f..d962801a59 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_GotoStartTime.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_GotoStartTime.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eSSB_GotoStartTime", + "base": "eSSB_GotoStartTime", "context": "Constant", "variant": "", "details": { - "name": "eSSB_GotoStartTime::Getter", - "category": "Constants" - } + "name": "Goto Start Time", + "category": "Constants/UI/Animation/Sequence Stop Behavior" + }, + "methods": [ + { + "base": "GeteSSB_GotoStartTime", + "details": { + "name": "Goto Start Time" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_LeaveTime.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_LeaveTime.names index 55136e9f17..e78c9df425 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_LeaveTime.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eSSB_LeaveTime.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eSSB_LeaveTime", + "base": "eSSB_LeaveTime", "context": "Constant", "variant": "", "details": { - "name": "eSSB_LeaveTime::Getter", - "category": "Constants" - } + "name": "Leave Time", + "category": "Constants/UI/Animation/Sequence Stop Behavior" + }, + "methods": [ + { + "base": "GeteSSB_LeaveTime", + "details": { + "name": "Leave Time" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Aborted.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Aborted.names index e2feeb0734..81d6b94038 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Aborted.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Aborted.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiAnimationEvent_Aborted", + "base": "eUiAnimationEvent_Aborted", "context": "Constant", "variant": "", "details": { - "name": "eUiAnimationEvent_Aborted::Getter", - "category": "Constants" - } + "name": "Aborted", + "category": "Constants/UI/Animation Event" + }, + "methods": [ + { + "base": "GeteUiAnimationEvent_Aborted", + "details": { + "name": "Aborted" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Started.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Started.names index 45c20aacf3..85684e5627 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Started.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Started.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiAnimationEvent_Started", + "base": "eUiAnimationEvent_Started", "context": "Constant", "variant": "", "details": { - "name": "eUiAnimationEvent_Started::Getter", - "category": "Constants" - } + "name": "Started", + "category": "Constants/UI/Animation Event" + }, + "methods": [ + { + "base": "GeteUiAnimationEvent_Started", + "details": { + "name": "Get Started" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Stopped.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Stopped.names index 20c8d48e42..9a8c843449 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Stopped.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Stopped.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiAnimationEvent_Stopped", + "base": "eUiAnimationEvent_Stopped", "context": "Constant", "variant": "", "details": { - "name": "eUiAnimationEvent_Stopped::Getter", - "category": "Constants" - } + "name": "Stopped", + "category": "Constants/UI/Animation Event" + }, + "methods": [ + { + "base": "GeteUiAnimationEvent_Stopped", + "details": { + "name": "Stopped" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Updated.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Updated.names index 69221891f7..8cce3444ad 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Updated.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiAnimationEvent_Updated.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiAnimationEvent_Updated", + "base": "eUiAnimationEvent_Updated", "context": "Constant", "variant": "", "details": { - "name": "eUiAnimationEvent_Updated::Getter", - "category": "Constants" - } + "name": "Updated", + "category": "Constants/UI/Animation Event" + }, + "methods": [ + { + "base": "GeteUiAnimationEvent_Updated", + "details": { + "name": "Updated" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Invalid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Invalid.names index 6062cced48..bfb9de3855 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Invalid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Invalid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiDragState_Invalid", + "base": "eUiDragState_Invalid", "context": "Constant", "variant": "", "details": { - "name": "eUiDragState_Invalid::Getter", - "category": "Constants" - } + "name": "Invalid", + "category": "Constants/UI/Drag State" + }, + "methods": [ + { + "base": "GeteUiDragState_Invalid", + "details": { + "name": "Invalid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Normal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Normal.names index c5c06e8057..b1d31d25de 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Normal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Normal.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiDragState_Normal", + "base": "eUiDragState_Normal", "context": "Constant", "variant": "", "details": { - "name": "eUiDragState_Normal::Getter", - "category": "Constants" - } + "name": "Normal", + "category": "Constants/UI/Drag State" + }, + "methods": [ + { + "base": "GeteUiDragState_Normal", + "details": { + "name": "Normal" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Valid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Valid.names index d8ad67098a..f58ad69a9a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Valid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDragState_Valid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiDragState_Valid", + "base": "eUiDragState_Valid", "context": "Constant", "variant": "", "details": { - "name": "eUiDragState_Valid::Getter", - "category": "Constants" - } + "name": "Valid", + "category": "Constants/UI/Drag State" + }, + "methods": [ + { + "base": "GeteUiDragState_Valid", + "details": { + "name": "Valid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Invalid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Invalid.names index 7f0745b6f3..26f2d83294 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Invalid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Invalid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiDropState_Invalid", + "base": "eUiDropState_Invalid", "context": "Constant", "variant": "", "details": { - "name": "eUiDropState_Invalid::Getter", - "category": "Constants" - } + "name": "Invalid", + "category": "Constants/UI/Drop State" + }, + "methods": [ + { + "base": "GeteUiDropState_Invalid", + "details": { + "name": "Invalid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Normal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Normal.names index b7325d9c15..076dd2d7fe 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Normal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Normal.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiDropState_Normal", + "base": "eUiDropState_Normal", "context": "Constant", "variant": "", "details": { - "name": "eUiDropState_Normal::Getter", - "category": "Constants" - } + "name": "Normal", + "category": "Constants/UI/Drop State" + }, + "methods": [ + { + "base": "GeteUiDropState_Normal", + "details": { + "name": "Normal" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Valid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Valid.names index 19551341da..3a8db2c23c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Valid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDropState_Valid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiDropState_Valid", + "base": "eUiDropState_Valid", "context": "Constant", "variant": "", "details": { - "name": "eUiDropState_Valid::Getter", - "category": "Constants" - } + "name": "Valid", + "category": "Constants/UI/Drop State" + }, + "methods": [ + { + "base": "GeteUiDropState_Valid", + "details": { + "name": "Valid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDynamicContentDBColorType_Free.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDynamicContentDBColorType_Free.names index b3dbc87cac..e420f6ad42 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDynamicContentDBColorType_Free.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDynamicContentDBColorType_Free.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiDynamicContentDBColorType_Free", + "base": "eUiDynamicContentDBColorType_Free", "context": "Constant", "variant": "", "details": { - "name": "eUiDynamicContentDBColorType_Free::Getter", - "category": "Constants" - } + "name": "Color Type Free", + "category": "Constants/UI/Dynamic ContentDB" + }, + "methods": [ + { + "base": "GeteUiDynamicContentDBColorType_Free", + "details": { + "name": "Color Type Free" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDynamicContentDBColorType_Paid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDynamicContentDBColorType_Paid.names index b58a8484ee..98f6c71f48 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDynamicContentDBColorType_Paid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiDynamicContentDBColorType_Paid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiDynamicContentDBColorType_Paid", + "base": "eUiDynamicContentDBColorType_Paid", "context": "Constant", "variant": "", "details": { - "name": "eUiDynamicContentDBColorType_Paid::Getter", - "category": "Constants" - } + "name": "Color Type Paid", + "category": "Constants/UI/Dynamic ContentDB" + }, + "methods": [ + { + "base": "GeteUiDynamicContentDBColorType_Paid", + "details": { + "name": "Color Type Paid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Circle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Circle.names index 7bcdda54e2..4b9f83c1f8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Circle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Circle.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiEmitShape_Circle", + "base": "eUiEmitShape_Circle", "context": "Constant", "variant": "", "details": { - "name": "eUiEmitShape_Circle::Getter", - "category": "Constants" - } + "name": "Circle", + "category": "Constants/UI/Emit Shape" + }, + "methods": [ + { + "base": "GeteUiEmitShape_Circle", + "details": { + "name": "Circle" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Point.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Point.names index 60ef452594..965d9445dd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Point.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Point.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiEmitShape_Point", + "base": "eUiEmitShape_Point", "context": "Constant", "variant": "", "details": { - "name": "eUiEmitShape_Point::Getter", - "category": "Constants" - } + "name": "Point", + "category": "Constants/UI/Emit Shape" + }, + "methods": [ + { + "base": "GeteUiEmitShape_Point", + "details": { + "name": "Point" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Quad.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Quad.names index 25ec6925de..76c7c7d9f1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Quad.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiEmitShape_Quad.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiEmitShape_Quad", + "base": "eUiEmitShape_Quad", "context": "Constant", "variant": "", "details": { - "name": "eUiEmitShape_Quad::Getter", - "category": "Constants" - } + "name": "Quad", + "category": "Constants/UI/Emit Shape" + }, + "methods": [ + { + "base": "GeteUiEmitShape_Quad", + "details": { + "name": "Quad" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_BottomLeft.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_BottomLeft.names index 11a00014b9..8911478f3c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_BottomLeft.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_BottomLeft.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillCornerOrigin_BottomLeft", + "base": "eUiFillCornerOrigin_BottomLeft", "context": "Constant", "variant": "", "details": { - "name": "eUiFillCornerOrigin_BottomLeft::Getter", - "category": "Constants" - } + "name": "Bottom Left", + "category": "Constants/UI/Fill Corner" + }, + "methods": [ + { + "base": "GeteUiFillCornerOrigin_BottomLeft", + "details": { + "name": "Bottom Left" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_BottomRight.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_BottomRight.names index b1121d2e37..da3225dd0b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_BottomRight.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_BottomRight.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillCornerOrigin_BottomRight", + "base": "eUiFillCornerOrigin_BottomRight", "context": "Constant", "variant": "", "details": { - "name": "eUiFillCornerOrigin_BottomRight::Getter", - "category": "Constants" - } + "name": "Bottom Right", + "category": "Constants/UI/Fill Corner" + }, + "methods": [ + { + "base": "GeteUiFillCornerOrigin_BottomRight", + "details": { + "name": "Bottom Right" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_TopLeft.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_TopLeft.names index 16e3c41732..63fa743485 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_TopLeft.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_TopLeft.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillCornerOrigin_TopLeft", + "base": "eUiFillCornerOrigin_TopLeft", "context": "Constant", "variant": "", "details": { - "name": "eUiFillCornerOrigin_TopLeft::Getter", - "category": "Constants" - } + "name": "Top Left", + "category": "Constants/UI/Fill Corner" + }, + "methods": [ + { + "base": "GeteUiFillCornerOrigin_TopLeft", + "details": { + "name": "Top Left" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_TopRight.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_TopRight.names index a923c46942..7b1c1204d4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_TopRight.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillCornerOrigin_TopRight.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillCornerOrigin_TopRight", + "base": "eUiFillCornerOrigin_TopRight", "context": "Constant", "variant": "", "details": { - "name": "eUiFillCornerOrigin_TopRight::Getter", - "category": "Constants" - } + "name": "Top Right", + "category": "Constants/UI/Fill Corner" + }, + "methods": [ + { + "base": "GeteUiFillCornerOrigin_TopRight", + "details": { + "name": "Top Right" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Bottom.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Bottom.names index 914282a199..430943dba2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Bottom.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Bottom.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillEdgeOrigin_Bottom", + "base": "eUiFillEdgeOrigin_Bottom", "context": "Constant", "variant": "", "details": { - "name": "eUiFillEdgeOrigin_Bottom::Getter", - "category": "Constants" - } + "name": "Bottom", + "category": "Constants/UI/Fill Edge" + }, + "methods": [ + { + "base": "GeteUiFillEdgeOrigin_Bottom", + "details": { + "name": "Bottom" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Left.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Left.names index a88450c7b4..f28601e4f4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Left.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Left.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillEdgeOrigin_Left", + "base": "eUiFillEdgeOrigin_Left", "context": "Constant", "variant": "", "details": { - "name": "eUiFillEdgeOrigin_Left::Getter", - "category": "Constants" - } + "name": "Left", + "category": "Constants/UI/Fill Edge" + }, + "methods": [ + { + "base": "GeteUiFillEdgeOrigin_Left", + "details": { + "name": "Left" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Right.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Right.names index db5d528b2e..cd75d8a15f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Right.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Right.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillEdgeOrigin_Right", + "base": "eUiFillEdgeOrigin_Right", "context": "Constant", "variant": "", "details": { - "name": "eUiFillEdgeOrigin_Right::Getter", - "category": "Constants" - } + "name": "Right", + "category": "Constants/UI/Fill Edge" + }, + "methods": [ + { + "base": "GeteUiFillEdgeOrigin_Right", + "details": { + "name": "Right" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Top.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Top.names index 6cb79b40d9..648f9cc379 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Top.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillEdgeOrigin_Top.names @@ -1,13 +1,30 @@ { "entries": [ { - "key": "eUiFillEdgeOrigin_Top", + "base": "eUiFillEdgeOrigin_Top", "context": "Constant", "variant": "", "details": { - "name": "eUiFillEdgeOrigin_Top::Getter", - "category": "Constants" - } + "name": "Top", + "category": "Constants/UI/Fill Edge", + "subtitle": "Fill Edge" + }, + "methods": [ + { + "base": "GeteUiFillEdgeOrigin_Top", + "details": { + "name": "Top" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_Linear.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_Linear.names index 6a1530c0b3..64cf4df11b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_Linear.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_Linear.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillType_Linear", + "base": "eUiFillType_Linear", "context": "Constant", "variant": "", "details": { - "name": "eUiFillType_Linear::Getter", - "category": "Constants" - } + "name": "Linear", + "category": "Constants/UI/Fill Type" + }, + "methods": [ + { + "base": "GeteUiFillType_Linear", + "details": { + "name": "Linear" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_None.names index 868d562df1..31746bdda5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillType_None", + "base": "eUiFillType_None", "context": "Constant", "variant": "", "details": { - "name": "eUiFillType_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/UI/Fill Type" + }, + "methods": [ + { + "base": "GeteUiFillType_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_Radial.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_Radial.names index ae01ffdcf6..3a92aafdd7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_Radial.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_Radial.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillType_Radial", + "base": "eUiFillType_Radial", "context": "Constant", "variant": "", "details": { - "name": "eUiFillType_Radial::Getter", - "category": "Constants" - } + "name": "Radial", + "category": "Constants/UI/Fill Type" + }, + "methods": [ + { + "base": "GeteUiFillType_Radial", + "details": { + "name": "Radial" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_RadialCorner.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_RadialCorner.names index 4dcecb752d..25ec95691c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_RadialCorner.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_RadialCorner.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillType_RadialCorner", + "base": "eUiFillType_RadialCorner", "context": "Constant", "variant": "", "details": { - "name": "eUiFillType_RadialCorner::Getter", - "category": "Constants" - } + "name": "Radial Corner", + "category": "Constants/UI/Fill Type" + }, + "methods": [ + { + "base": "GeteUiFillType_RadialCorner", + "details": { + "name": "Radial Corner" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_RadialEdge.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_RadialEdge.names index a8e9d490d2..99a7798bed 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_RadialEdge.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFillType_RadialEdge.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFillType_RadialEdge", + "base": "eUiFillType_RadialEdge", "context": "Constant", "variant": "", "details": { - "name": "eUiFillType_RadialEdge::Getter", - "category": "Constants" - } + "name": "Radial Edge", + "category": "Constants/UI/Fill Type" + }, + "methods": [ + { + "base": "GeteUiFillType_RadialEdge", + "details": { + "name": "Radial Edge" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationFramerateUnits_FPS.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationFramerateUnits_FPS.names index 476f62879e..ffab126757 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationFramerateUnits_FPS.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationFramerateUnits_FPS.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFlipbookAnimationFramerateUnits_FPS", + "base": "eUiFlipbookAnimationFramerateUnits_FPS", "context": "Constant", "variant": "", "details": { - "name": "eUiFlipbookAnimationFramerateUnits_FPS::Getter", - "category": "Constants" - } + "name": "Frames Per Second", + "category": "Constants/UI/Flipbook Animation" + }, + "methods": [ + { + "base": "GeteUiFlipbookAnimationFramerateUnits_FPS", + "details": { + "name": "Frames Per Second" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationFramerateUnits_SecondsPerFrame.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationFramerateUnits_SecondsPerFrame.names index 2d567073a0..273d36c382 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationFramerateUnits_SecondsPerFrame.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationFramerateUnits_SecondsPerFrame.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFlipbookAnimationFramerateUnits_SecondsPerFrame", + "base": "eUiFlipbookAnimationFramerateUnits_SecondsPerFrame", "context": "Constant", "variant": "", "details": { - "name": "eUiFlipbookAnimationFramerateUnits_SecondsPerFrame::Getter", - "category": "Constants" - } + "name": "Seconds Per Frame", + "category": "Constants/UI/Flipbook Animation" + }, + "methods": [ + { + "base": "GeteUiFlipbookAnimationFramerateUnits_SecondsPerFrame", + "details": { + "name": "Seconds Per Frame" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_Linear.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_Linear.names index d794ec96f0..72dc9a0a98 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_Linear.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_Linear.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFlipbookAnimationLoopType_Linear", + "base": "eUiFlipbookAnimationLoopType_Linear", "context": "Constant", "variant": "", "details": { - "name": "eUiFlipbookAnimationLoopType_Linear::Getter", - "category": "Constants" - } + "name": "Linear", + "category": "Constants/UI/Flipbook Animation/Loop Type" + }, + "methods": [ + { + "base": "GeteUiFlipbookAnimationLoopType_Linear", + "details": { + "name": "Linear" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_None.names index 2cdbfea52c..c59df78329 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFlipbookAnimationLoopType_None", + "base": "eUiFlipbookAnimationLoopType_None", "context": "Constant", "variant": "", "details": { - "name": "eUiFlipbookAnimationLoopType_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/UI/Flipbook Animation/Loop Type" + }, + "methods": [ + { + "base": "GeteUiFlipbookAnimationLoopType_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_PingPong.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_PingPong.names index 9c9c1cd016..39d2672941 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_PingPong.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiFlipbookAnimationLoopType_PingPong.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiFlipbookAnimationLoopType_PingPong", + "base": "eUiFlipbookAnimationLoopType_PingPong", "context": "Constant", "variant": "", "details": { - "name": "eUiFlipbookAnimationLoopType_PingPong::Getter", - "category": "Constants" - } + "name": "Ping Pong", + "category": "Constants/UI/Flipbook Animation/Loop Type" + }, + "methods": [ + { + "base": "GeteUiFlipbookAnimationLoopType_PingPong", + "details": { + "name": "Ping Pong" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Center.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Center.names index faf4797114..0e724f97a5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Center.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Center.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiHAlign_Center", + "base": "eUiHAlign_Center", "context": "Constant", "variant": "", "details": { - "name": "eUiHAlign_Center::Getter", - "category": "Constants" - } + "name": "Horizontal Align Center", + "category": "Constants/UI/Align" + }, + "methods": [ + { + "base": "GeteUiHAlign_Center", + "details": { + "name": "Horizontal Align: Center" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Left.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Left.names index 01cd8f3812..f5291df8a4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Left.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Left.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiHAlign_Left", + "base": "eUiHAlign_Left", "context": "Constant", "variant": "", "details": { - "name": "eUiHAlign_Left::Getter", - "category": "Constants" - } + "name": "Horizontal Align Left", + "category": "Constants/UI/Align" + }, + "methods": [ + { + "base": "GeteUiHAlign_Left", + "details": { + "name": "Horizontal Align: Left" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Right.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Right.names index 03ff7072ef..f198f249f6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Right.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHAlign_Right.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiHAlign_Right", + "base": "eUiHAlign_Right", "context": "Constant", "variant": "", "details": { - "name": "eUiHAlign_Right::Getter", - "category": "Constants" - } + "name": "Horizontal Align Right", + "category": "Constants/UI/Align" + }, + "methods": [ + { + "base": "GeteUiHAlign_Right", + "details": { + "name": "Horizontal Align: Right" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHorizontalOrder_LeftToRight.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHorizontalOrder_LeftToRight.names index f2a0494385..ffd3607db8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHorizontalOrder_LeftToRight.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHorizontalOrder_LeftToRight.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiHorizontalOrder_LeftToRight", + "base": "eUiHorizontalOrder_LeftToRight", "context": "Constant", "variant": "", "details": { - "name": "eUiHorizontalOrder_LeftToRight::Getter", - "category": "Constants" - } + "name": "Left To Right", + "category": "Constants/UI/Order/Horizontal" + }, + "methods": [ + { + "base": "GeteUiHorizontalOrder_LeftToRight", + "details": { + "name": "Left To Right" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHorizontalOrder_RightToLeft.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHorizontalOrder_RightToLeft.names index 133113e8ce..816220904a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHorizontalOrder_RightToLeft.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiHorizontalOrder_RightToLeft.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiHorizontalOrder_RightToLeft", + "base": "eUiHorizontalOrder_RightToLeft", "context": "Constant", "variant": "", "details": { - "name": "eUiHorizontalOrder_RightToLeft::Getter", - "category": "Constants" - } + "name": "Right To Left", + "category": "Constants/UI/Order/Horizontal" + }, + "methods": [ + { + "base": "GeteUiHorizontalOrder_RightToLeft", + "details": { + "name": "Right To Left" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_Fixed.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_Fixed.names index f82d1d4eb0..303fb21025 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_Fixed.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_Fixed.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageSequenceImageType_Fixed", + "base": "eUiImageSequenceImageType_Fixed", "context": "Constant", "variant": "", "details": { - "name": "eUiImageSequenceImageType_Fixed::Getter", - "category": "Constants" - } + "name": "Image Type: Fixed", + "category": "Constants/UI/Image Sequence" + }, + "methods": [ + { + "base": "GeteUiImageSequenceImageType_Fixed", + "details": { + "name": "Image Type: Fixed" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_Stretched.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_Stretched.names index a4b48dc8ad..2aaca0318f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_Stretched.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_Stretched.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageSequenceImageType_Stretched", + "base": "eUiImageSequenceImageType_Stretched", "context": "Constant", "variant": "", "details": { - "name": "eUiImageSequenceImageType_Stretched::Getter", - "category": "Constants" - } + "name": "Image Type: Stretched", + "category": "Constants/UI/Image Sequence" + }, + "methods": [ + { + "base": "GeteUiImageSequenceImageType_Stretched", + "details": { + "name": "Image Type: Stretched" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_StretchedToFill.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_StretchedToFill.names index c59426f677..4213ec205a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_StretchedToFill.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_StretchedToFill.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageSequenceImageType_StretchedToFill", + "base": "eUiImageSequenceImageType_StretchedToFill", "context": "Constant", "variant": "", "details": { - "name": "eUiImageSequenceImageType_StretchedToFill::Getter", - "category": "Constants" - } + "name": "Image Type: Stretched To Fill", + "category": "Constants/UI/Image Sequence" + }, + "methods": [ + { + "base": "GeteUiImageSequenceImageType_StretchedToFill", + "details": { + "name": "Image Type: Stretched To Fill" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_StretchedToFit.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_StretchedToFit.names index 9ba3d30e62..acc64fa708 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_StretchedToFit.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageSequenceImageType_StretchedToFit.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageSequenceImageType_StretchedToFit", + "base": "eUiImageSequenceImageType_StretchedToFit", "context": "Constant", "variant": "", "details": { - "name": "eUiImageSequenceImageType_StretchedToFit::Getter", - "category": "Constants" - } + "name": "Image Type: Stretched To Fit", + "category": "Constants/UI/Image Sequence" + }, + "methods": [ + { + "base": "GeteUiImageSequenceImageType_StretchedToFit", + "details": { + "name": "Image Type: Stretched To Fit" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Fixed.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Fixed.names index 0a65819fc1..73d2ff7381 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Fixed.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Fixed.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageType_Fixed", + "base": "eUiImageType_Fixed", "context": "Constant", "variant": "", "details": { - "name": "eUiImageType_Fixed::Getter", - "category": "Constants" - } + "name": "Fixed", + "category": "Constants/UI/Image Type" + }, + "methods": [ + { + "base": "GeteUiImageType_Fixed", + "details": { + "name": "Fixed" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Sliced.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Sliced.names index f9f1bc3743..6f3158e08e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Sliced.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Sliced.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageType_Sliced", + "base": "eUiImageType_Sliced", "context": "Constant", "variant": "", "details": { - "name": "eUiImageType_Sliced::Getter", - "category": "Constants" - } + "name": "Sliced", + "category": "Constants/UI/Image Type" + }, + "methods": [ + { + "base": "GeteUiImageType_Sliced", + "details": { + "name": "Sliced" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Stretched.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Stretched.names index fc2312db15..65a02f354d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Stretched.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Stretched.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageType_Stretched", + "base": "eUiImageType_Stretched", "context": "Constant", "variant": "", "details": { - "name": "eUiImageType_Stretched::Getter", - "category": "Constants" - } + "name": "Stretched", + "category": "Constants/UI/Image Type" + }, + "methods": [ + { + "base": "GeteUiImageType_Stretched", + "details": { + "name": "Stretched" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_StretchedToFill.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_StretchedToFill.names index a30508aa7e..b61130487a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_StretchedToFill.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_StretchedToFill.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageType_StretchedToFill", + "base": "eUiImageType_StretchedToFill", "context": "Constant", "variant": "", "details": { - "name": "eUiImageType_StretchedToFill::Getter", - "category": "Constants" - } + "name": "Stretched To Fill", + "category": "Constants/UI/Image Type" + }, + "methods": [ + { + "base": "GeteUiImageType_StretchedToFill", + "details": { + "name": "Stretched To Fill" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_StretchedToFit.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_StretchedToFit.names index be3b007a7e..1223714053 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_StretchedToFit.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_StretchedToFit.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageType_StretchedToFit", + "base": "eUiImageType_StretchedToFit", "context": "Constant", "variant": "", "details": { - "name": "eUiImageType_StretchedToFit::Getter", - "category": "Constants" - } + "name": "Stretched To Fit", + "category": "Constants/UI/Image Type" + }, + "methods": [ + { + "base": "GeteUiImageType_StretchedToFit", + "details": { + "name": "Stretched To Fit" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Tiled.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Tiled.names index 0a6e5b0977..ea65a0911e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Tiled.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiImageType_Tiled.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiImageType_Tiled", + "base": "eUiImageType_Tiled", "context": "Constant", "variant": "", "details": { - "name": "eUiImageType_Tiled::Getter", - "category": "Constants" - } + "name": "Tiled", + "category": "Constants/UI/Image Type" + }, + "methods": [ + { + "base": "GeteUiImageType_Tiled", + "details": { + "name": "Tiled" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Disabled.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Disabled.names index 43ed9dfac2..014fa172d7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Disabled.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Disabled.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiInteractableState_Disabled", + "base": "eUiInteractableState_Disabled", "context": "Constant", "variant": "", "details": { - "name": "eUiInteractableState_Disabled::Getter", - "category": "Constants" - } + "name": "Disabled", + "category": "Constants/UI/Interactable State" + }, + "methods": [ + { + "base": "GeteUiInteractableState_Disabled", + "details": { + "name": "Disabled" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Hover.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Hover.names index 7e005729fd..978dd826d6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Hover.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Hover.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiInteractableState_Hover", + "base": "eUiInteractableState_Hover", "context": "Constant", "variant": "", "details": { - "name": "eUiInteractableState_Hover::Getter", - "category": "Constants" - } + "name": "Hover", + "category": "Constants/UI/Interactable State" + }, + "methods": [ + { + "base": "GeteUiInteractableState_Hover", + "details": { + "name": "Hover" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Normal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Normal.names index 51d7e81522..9ab36fba53 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Normal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Normal.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiInteractableState_Normal", + "base": "eUiInteractableState_Normal", "context": "Constant", "variant": "", "details": { - "name": "eUiInteractableState_Normal::Getter", - "category": "Constants" - } + "name": "Normal", + "category": "Constants/UI/Interactable State" + }, + "methods": [ + { + "base": "GeteUiInteractableState_Normal", + "details": { + "name": "Normal" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Pressed.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Pressed.names index b578408cd2..295c75a89b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Pressed.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiInteractableState_Pressed.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiInteractableState_Pressed", + "base": "eUiInteractableState_Pressed", "context": "Constant", "variant": "", "details": { - "name": "eUiInteractableState_Pressed::Getter", - "category": "Constants" - } + "name": "Pressed", + "category": "Constants/UI/Interactable State" + }, + "methods": [ + { + "base": "GeteUiInteractableState_Pressed", + "details": { + "name": "Pressed" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiLayoutGridStartingDirection_HorizontalOrder.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiLayoutGridStartingDirection_HorizontalOrder.names index d0c3ef3a79..c4a6d39865 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiLayoutGridStartingDirection_HorizontalOrder.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiLayoutGridStartingDirection_HorizontalOrder.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiLayoutGridStartingDirection_HorizontalOrder", + "base": "eUiLayoutGridStartingDirection_HorizontalOrder", "context": "Constant", "variant": "", "details": { - "name": "eUiLayoutGridStartingDirection_HorizontalOrder::Getter", - "category": "Constants" - } + "name": "Horizontal Order", + "category": "Constants/UI/Layout Grid Starting Direction" + }, + "methods": [ + { + "base": "GeteUiLayoutGridStartingDirection_HorizontalOrder", + "details": { + "name": "Horizontal Order" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiLayoutGridStartingDirection_VerticalOrder.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiLayoutGridStartingDirection_VerticalOrder.names index fd32fb89c9..33d50cf441 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiLayoutGridStartingDirection_VerticalOrder.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiLayoutGridStartingDirection_VerticalOrder.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiLayoutGridStartingDirection_VerticalOrder", + "base": "eUiLayoutGridStartingDirection_VerticalOrder", "context": "Constant", "variant": "", "details": { - "name": "eUiLayoutGridStartingDirection_VerticalOrder::Getter", - "category": "Constants" - } + "name": "Vertical Order", + "category": "Constants/UI/Layout Grid Starting Direction" + }, + "methods": [ + { + "base": "GeteUiLayoutGridStartingDirection_VerticalOrder", + "details": { + "name": "Vertical Order" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_Automatic.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_Automatic.names index 1743a1ebdb..e3c9a9ecd7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_Automatic.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_Automatic.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiNavigationMode_Automatic", + "base": "eUiNavigationMode_Automatic", "context": "Constant", "variant": "", "details": { - "name": "eUiNavigationMode_Automatic::Getter", - "category": "Constants" - } + "name": "Automatic", + "category": "Constants/UI/Navigation Mode" + }, + "methods": [ + { + "base": "GeteUiNavigationMode_Automatic", + "details": { + "name": "Automatic" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_Custom.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_Custom.names index 8a3ee33916..6a1beeb293 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_Custom.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_Custom.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiNavigationMode_Custom", + "base": "eUiNavigationMode_Custom", "context": "Constant", "variant": "", "details": { - "name": "eUiNavigationMode_Custom::Getter", - "category": "Constants" - } + "name": "Custom", + "category": "Constants/UI/Navigation Mode" + }, + "methods": [ + { + "base": "GeteUiNavigationMode_Custom", + "details": { + "name": "Custom" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_None.names index abc9248282..19e02a0412 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiNavigationMode_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiNavigationMode_None", + "base": "eUiNavigationMode_None", "context": "Constant", "variant": "", "details": { - "name": "eUiNavigationMode_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/UI/Navigation Mode" + }, + "methods": [ + { + "base": "GeteUiNavigationMode_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleCoordinateType_Cartesian.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleCoordinateType_Cartesian.names index 33a1db8e62..00e0aaece8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleCoordinateType_Cartesian.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleCoordinateType_Cartesian.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiParticleCoordinateType_Cartesian", + "base": "eUiParticleCoordinateType_Cartesian", "context": "Constant", "variant": "", "details": { - "name": "eUiParticleCoordinateType_Cartesian::Getter", - "category": "Constants" - } + "name": "Cartesian", + "category": "Constants/UI/Particle Coordinate Type" + }, + "methods": [ + { + "base": "GeteUiParticleCoordinateType_Cartesian", + "details": { + "name": "Cartesian" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleCoordinateType_Polar.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleCoordinateType_Polar.names index 3ddbf1792c..c0014a0a48 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleCoordinateType_Polar.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleCoordinateType_Polar.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiParticleCoordinateType_Polar", + "base": "eUiParticleCoordinateType_Polar", "context": "Constant", "variant": "", "details": { - "name": "eUiParticleCoordinateType_Polar::Getter", - "category": "Constants" - } + "name": "Polar", + "category": "Constants/UI/Particle Coordinate Type" + }, + "methods": [ + { + "base": "GeteUiParticleCoordinateType_Polar", + "details": { + "name": "Polar" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleInitialDirectionType_RelativeToEmitAngle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleInitialDirectionType_RelativeToEmitAngle.names index f9a8ae7ceb..000c00bcb2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleInitialDirectionType_RelativeToEmitAngle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleInitialDirectionType_RelativeToEmitAngle.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiParticleInitialDirectionType_RelativeToEmitAngle", + "base": "eUiParticleInitialDirectionType_RelativeToEmitAngle", "context": "Constant", "variant": "", "details": { - "name": "eUiParticleInitialDirectionType_RelativeToEmitAngle::Getter", - "category": "Constants" - } + "name": "Relative To Emit Angle", + "category": "Constants/UI/Particle Initial Direction Type" + }, + "methods": [ + { + "base": "GeteUiParticleInitialDirectionType_RelativeToEmitAngle", + "details": { + "name": "Relative To Emit Angle" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleInitialDirectionType_RelativeToEmitterCenter.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleInitialDirectionType_RelativeToEmitterCenter.names index 6486a80003..2a3d5ce1a2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleInitialDirectionType_RelativeToEmitterCenter.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiParticleInitialDirectionType_RelativeToEmitterCenter.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiParticleInitialDirectionType_RelativeToEmitterCenter", + "base": "eUiParticleInitialDirectionType_RelativeToEmitterCenter", "context": "Constant", "variant": "", "details": { - "name": "eUiParticleInitialDirectionType_RelativeToEmitterCenter::Getter", - "category": "Constants" - } + "name": "Relative To Emitter Center", + "category": "Constants/UI/Particle Initial Direction Type" + }, + "methods": [ + { + "base": "GeteUiParticleInitialDirectionType_RelativeToEmitterCenter", + "details": { + "name": "Relative To Emitter Center" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_NonUniformScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_NonUniformScale.names index 605ed1aba5..839a22e304 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_NonUniformScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_NonUniformScale.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScaleToDeviceMode_NonUniformScale", + "base": "eUiScaleToDeviceMode_NonUniformScale", "context": "Constant", "variant": "", "details": { - "name": "eUiScaleToDeviceMode_NonUniformScale::Getter", - "category": "Constants" - } + "name": "Non Uniform Scale", + "category": "Constants/UI/Scale To Device Mode" + }, + "methods": [ + { + "base": "GeteUiScaleToDeviceMode_NonUniformScale", + "details": { + "name": "Non Uniform Scale" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_None.names index 88c08b06ec..1739b984d2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScaleToDeviceMode_None", + "base": "eUiScaleToDeviceMode_None", "context": "Constant", "variant": "", "details": { - "name": "eUiScaleToDeviceMode_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/UI/Scale To Device Mode" + }, + "methods": [ + { + "base": "GeteUiScaleToDeviceMode_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_ScaleXOnly.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_ScaleXOnly.names index 5804e7aeaa..883068240f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_ScaleXOnly.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_ScaleXOnly.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScaleToDeviceMode_ScaleXOnly", + "base": "eUiScaleToDeviceMode_ScaleXOnly", "context": "Constant", "variant": "", "details": { - "name": "eUiScaleToDeviceMode_ScaleXOnly::Getter", - "category": "Constants" - } + "name": "Scale X Only", + "category": "Constants/UI/Scale To Device Mode" + }, + "methods": [ + { + "base": "GeteUiScaleToDeviceMode_ScaleXOnly", + "details": { + "name": "Scale X Only" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_ScaleYOnly.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_ScaleYOnly.names index e5ea4e5f5c..3589e6b7cf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_ScaleYOnly.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_ScaleYOnly.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScaleToDeviceMode_ScaleYOnly", + "base": "eUiScaleToDeviceMode_ScaleYOnly", "context": "Constant", "variant": "", "details": { - "name": "eUiScaleToDeviceMode_ScaleYOnly::Getter", - "category": "Constants" - } + "name": "Scale Y Only", + "category": "Constants/UI/Scale To Device Mode" + }, + "methods": [ + { + "base": "GeteUiScaleToDeviceMode_ScaleYOnly", + "details": { + "name": "Scale Y Only" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFill.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFill.names index aa1f56984b..e6e0a8c72d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFill.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFill.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScaleToDeviceMode_UniformScaleToFill", + "base": "eUiScaleToDeviceMode_UniformScaleToFill", "context": "Constant", "variant": "", "details": { - "name": "eUiScaleToDeviceMode_UniformScaleToFill::Getter", - "category": "Constants" - } + "name": "Uniform Scale To Fill", + "category": "Constants/UI/Scale To Device Mode" + }, + "methods": [ + { + "base": "GeteUiScaleToDeviceMode_UniformScaleToFill", + "details": { + "name": "Uniform Scale To Fill" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFit.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFit.names index 3b603fabc1..8f2e3c80ee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFit.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFit.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScaleToDeviceMode_UniformScaleToFit", + "base": "eUiScaleToDeviceMode_UniformScaleToFit", "context": "Constant", "variant": "", "details": { - "name": "eUiScaleToDeviceMode_UniformScaleToFit::Getter", - "category": "Constants" - } + "name": "Uniform Scale To Fit", + "category": "Constants/UI/Scale To Device Mode" + }, + "methods": [ + { + "base": "GeteUiScaleToDeviceMode_UniformScaleToFit", + "details": { + "name": "Uniform Scale To Fit" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFitX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFitX.names index ce90c47c88..dd07d3e4c3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFitX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFitX.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScaleToDeviceMode_UniformScaleToFitX", + "base": "eUiScaleToDeviceMode_UniformScaleToFitX", "context": "Constant", "variant": "", "details": { - "name": "eUiScaleToDeviceMode_UniformScaleToFitX::Getter", - "category": "Constants" - } + "name": "Uniform Scale To Fit X", + "category": "Constants/UI/Scale To Device Mode" + }, + "methods": [ + { + "base": "GeteUiScaleToDeviceMode_UniformScaleToFitX", + "details": { + "name": "Uniform Scale To Fit X" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFitY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFitY.names index a0ba060b36..5519e48332 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFitY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScaleToDeviceMode_UniformScaleToFitY.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScaleToDeviceMode_UniformScaleToFitY", + "base": "eUiScaleToDeviceMode_UniformScaleToFitY", "context": "Constant", "variant": "", "details": { - "name": "eUiScaleToDeviceMode_UniformScaleToFitY::Getter", - "category": "Constants" - } + "name": "Uniform Scale To Fit Y", + "category": "Constants/UI/Scale To Device Mode" + }, + "methods": [ + { + "base": "GeteUiScaleToDeviceMode_UniformScaleToFitY", + "details": { + "name": "Uniform Scale To Fit Y" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AlwaysShow.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AlwaysShow.names index 61931775a9..8db8786d20 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AlwaysShow.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AlwaysShow.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScrollBoxScrollBarVisibility_AlwaysShow", + "base": "eUiScrollBoxScrollBarVisibility_AlwaysShow", "context": "Constant", "variant": "", "details": { - "name": "eUiScrollBoxScrollBarVisibility_AlwaysShow::Getter", - "category": "Constants" - } + "name": "Always Show", + "category": "Constants/UI/Scroll Box Scroll Bar Visibility" + }, + "methods": [ + { + "base": "GeteUiScrollBoxScrollBarVisibility_AlwaysShow", + "details": { + "name": "Always Show" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AutoHide.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AutoHide.names index 48de4a7899..df81d761aa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AutoHide.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AutoHide.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScrollBoxScrollBarVisibility_AutoHide", + "base": "eUiScrollBoxScrollBarVisibility_AutoHide", "context": "Constant", "variant": "", "details": { - "name": "eUiScrollBoxScrollBarVisibility_AutoHide::Getter", - "category": "Constants" - } + "name": "Auto Hide", + "category": "Constants/UI/Scroll Box Scroll Bar Visibility" + }, + "methods": [ + { + "base": "GeteUiScrollBoxScrollBarVisibility_AutoHide", + "details": { + "name": "Auto Hide" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AutoHideAndResizeViewport.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AutoHideAndResizeViewport.names index 560df7e007..c65f31e223 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AutoHideAndResizeViewport.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxScrollBarVisibility_AutoHideAndResizeViewport.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScrollBoxScrollBarVisibility_AutoHideAndResizeViewport", + "base": "eUiScrollBoxScrollBarVisibility_AutoHideAndResizeViewport", "context": "Constant", "variant": "", "details": { - "name": "eUiScrollBoxScrollBarVisibility_AutoHideAndResizeViewport::Getter", - "category": "Constants" - } + "name": "Auto Hide And Resize Viewport", + "category": "Constants/UI/Scroll Box Scroll Bar Visibility" + }, + "methods": [ + { + "base": "GeteUiScrollBoxScrollBarVisibility_AutoHideAndResizeViewport", + "details": { + "name": "Auto Hide And Resize Viewport" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_Children.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_Children.names index 0b540c47a4..2552d2d348 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_Children.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_Children.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScrollBoxSnapMode_Children", + "base": "eUiScrollBoxSnapMode_Children", "context": "Constant", "variant": "", "details": { - "name": "eUiScrollBoxSnapMode_Children::Getter", - "category": "Constants" - } + "name": "Children", + "category": "Constants/UI/Scroll Box Snap Mode" + }, + "methods": [ + { + "base": "GeteUiScrollBoxSnapMode_Children", + "details": { + "name": "Children" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_Grid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_Grid.names index 5696a2ac17..3369cb4df1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_Grid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_Grid.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScrollBoxSnapMode_Grid", + "base": "eUiScrollBoxSnapMode_Grid", "context": "Constant", "variant": "", "details": { - "name": "eUiScrollBoxSnapMode_Grid::Getter", - "category": "Constants" - } + "name": "Grid", + "category": "Constants/UI/Scroll Box Snap Mode" + }, + "methods": [ + { + "base": "GeteUiScrollBoxSnapMode_Grid", + "details": { + "name": "Grid" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_None.names index 107536dc88..e806ef8347 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollBoxSnapMode_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScrollBoxSnapMode_None", + "base": "eUiScrollBoxSnapMode_None", "context": "Constant", "variant": "", "details": { - "name": "eUiScrollBoxSnapMode_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/UI/Scroll Box Snap Mode" + }, + "methods": [ + { + "base": "GeteUiScrollBoxSnapMode_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollerOrientation_Horizontal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollerOrientation_Horizontal.names index a9a7e4b62f..89b4e75151 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollerOrientation_Horizontal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollerOrientation_Horizontal.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScrollerOrientation_Horizontal", + "base": "eUiScrollerOrientation_Horizontal", "context": "Constant", "variant": "", "details": { - "name": "eUiScrollerOrientation_Horizontal::Getter", - "category": "Constants" - } + "name": "Horizontal", + "category": "Constants/UI/Scroller Orientation" + }, + "methods": [ + { + "base": "GeteUiScrollerOrientation_Horizontal", + "details": { + "name": "Horizontal" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollerOrientation_Vertical.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollerOrientation_Vertical.names index fee533f819..7823992830 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollerOrientation_Vertical.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiScrollerOrientation_Vertical.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiScrollerOrientation_Vertical", + "base": "eUiScrollerOrientation_Vertical", "context": "Constant", "variant": "", "details": { - "name": "eUiScrollerOrientation_Vertical::Getter", - "category": "Constants" - } + "name": "Vertical", + "category": "Constants/UI/Scroller Orientation" + }, + "methods": [ + { + "base": "GeteUiScrollerOrientation_Vertical", + "details": { + "name": "Vertical" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiSpriteType_RenderTarget.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiSpriteType_RenderTarget.names index f1b2b162d4..94056daa38 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiSpriteType_RenderTarget.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiSpriteType_RenderTarget.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiSpriteType_RenderTarget", + "base": "eUiSpriteType_RenderTarget", "context": "Constant", "variant": "", "details": { - "name": "eUiSpriteType_RenderTarget::Getter", - "category": "Constants" - } + "name": "Render Target", + "category": "Constants/UI/Sprite Type" + }, + "methods": [ + { + "base": "GeteUiSpriteType_RenderTarget", + "details": { + "name": "Render Target" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiSpriteType_SpriteAsset.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiSpriteType_SpriteAsset.names index 4fb031214f..c47a3c4192 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiSpriteType_SpriteAsset.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiSpriteType_SpriteAsset.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiSpriteType_SpriteAsset", + "base": "eUiSpriteType_SpriteAsset", "context": "Constant", "variant": "", "details": { - "name": "eUiSpriteType_SpriteAsset::Getter", - "category": "Constants" - } + "name": "Sprite Asset", + "category": "Constants/UI/Sprite Type" + }, + "methods": [ + { + "base": "GeteUiSpriteType_SpriteAsset", + "details": { + "name": "Sprite Asset" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_ClipText.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_ClipText.names index 4020030b26..9aa0a64317 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_ClipText.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_ClipText.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTextOverflowMode_ClipText", + "base": "eUiTextOverflowMode_ClipText", "context": "Constant", "variant": "", "details": { - "name": "eUiTextOverflowMode_ClipText::Getter", - "category": "Constants" - } + "name": "Clip Text", + "category": "Constants/UI/Text Overflow Mode" + }, + "methods": [ + { + "base": "GeteUiTextOverflowMode_ClipText", + "details": { + "name": "Clip Text" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_Ellipsis.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_Ellipsis.names index 340acecf48..b930c80c95 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_Ellipsis.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_Ellipsis.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTextOverflowMode_Ellipsis", + "base": "eUiTextOverflowMode_Ellipsis", "context": "Constant", "variant": "", "details": { - "name": "eUiTextOverflowMode_Ellipsis::Getter", - "category": "Constants" - } + "name": "Ellipsis", + "category": "Constants/UI/Text Overflow Mode" + }, + "methods": [ + { + "base": "GeteUiTextOverflowMode_Ellipsis", + "details": { + "name": "Ellipsis" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_OverflowText.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_OverflowText.names index 5de46b4a76..51271d943f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_OverflowText.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextOverflowMode_OverflowText.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTextOverflowMode_OverflowText", + "base": "eUiTextOverflowMode_OverflowText", "context": "Constant", "variant": "", "details": { - "name": "eUiTextOverflowMode_OverflowText::Getter", - "category": "Constants" - } + "name": "Overflow Text", + "category": "Constants/UI/Text Overflow Mode" + }, + "methods": [ + { + "base": "GeteUiTextOverflowMode_OverflowText", + "details": { + "name": "Overflow Text" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_None.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_None.names index 5331e830f4..614c337c6b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_None.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_None.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTextShrinkToFit_None", + "base": "eUiTextShrinkToFit_None", "context": "Constant", "variant": "", "details": { - "name": "eUiTextShrinkToFit_None::Getter", - "category": "Constants" - } + "name": "None", + "category": "Constants/UI/Text Shrink To Fit" + }, + "methods": [ + { + "base": "GeteUiTextShrinkToFit_None", + "details": { + "name": "None" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_Uniform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_Uniform.names index 175534eafd..72c29c8b5a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_Uniform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_Uniform.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTextShrinkToFit_Uniform", + "base": "eUiTextShrinkToFit_Uniform", "context": "Constant", "variant": "", "details": { - "name": "eUiTextShrinkToFit_Uniform::Getter", - "category": "Constants" - } + "name": "Uniform", + "category": "Constants/UI/Text Shrink To Fit" + }, + "methods": [ + { + "base": "GeteUiTextShrinkToFit_Uniform", + "details": { + "name": "Uniform" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_WidthOnly.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_WidthOnly.names index 95b5d2b424..67524f593f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_WidthOnly.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextShrinkToFit_WidthOnly.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTextShrinkToFit_WidthOnly", + "base": "eUiTextShrinkToFit_WidthOnly", "context": "Constant", "variant": "", "details": { - "name": "eUiTextShrinkToFit_WidthOnly::Getter", - "category": "Constants" - } + "name": "Width Only", + "category": "Constants/UI/Text Shrink To Fit" + }, + "methods": [ + { + "base": "GeteUiTextShrinkToFit_WidthOnly", + "details": { + "name": "Width Only" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextWrapTextSetting_NoWrap.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextWrapTextSetting_NoWrap.names index 04dc16a0ae..dfb70ab7ba 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextWrapTextSetting_NoWrap.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextWrapTextSetting_NoWrap.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTextWrapTextSetting_NoWrap", + "base": "eUiTextWrapTextSetting_NoWrap", "context": "Constant", "variant": "", "details": { - "name": "eUiTextWrapTextSetting_NoWrap::Getter", - "category": "Constants" - } + "name": "No Wrap", + "category": "Constants/UI/Text Wrap" + }, + "methods": [ + { + "base": "GeteUiTextWrapTextSetting_NoWrap", + "details": { + "name": "No Wrap" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextWrapTextSetting_Wrap.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextWrapTextSetting_Wrap.names index 75fe851271..96c98744d1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextWrapTextSetting_Wrap.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTextWrapTextSetting_Wrap.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTextWrapTextSetting_Wrap", + "base": "eUiTextWrapTextSetting_Wrap", "context": "Constant", "variant": "", "details": { - "name": "eUiTextWrapTextSetting_Wrap::Getter", - "category": "Constants" - } + "name": "Wrap", + "category": "Constants/UI/Text Wrap" + }, + "methods": [ + { + "base": "GeteUiTextWrapTextSetting_Wrap", + "details": { + "name": "Wrap" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayAutoPositionMode_OffsetFromElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayAutoPositionMode_OffsetFromElement.names index 473b16b42d..c0fb71abc1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayAutoPositionMode_OffsetFromElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayAutoPositionMode_OffsetFromElement.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTooltipDisplayAutoPositionMode_OffsetFromElement", + "base": "eUiTooltipDisplayAutoPositionMode_OffsetFromElement", "context": "Constant", "variant": "", "details": { - "name": "eUiTooltipDisplayAutoPositionMode_OffsetFromElement::Getter", - "category": "Constants" - } + "name": "Offset From Element", + "category": "Constants/UI/Tooltip Display Auto Position Mode" + }, + "methods": [ + { + "base": "GeteUiTooltipDisplayAutoPositionMode_OffsetFromElement", + "details": { + "name": "Offset From Element" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayAutoPositionMode_OffsetFromMouse.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayAutoPositionMode_OffsetFromMouse.names index 4876380d2b..5c12e0a60e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayAutoPositionMode_OffsetFromMouse.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayAutoPositionMode_OffsetFromMouse.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTooltipDisplayAutoPositionMode_OffsetFromMouse", + "base": "eUiTooltipDisplayAutoPositionMode_OffsetFromMouse", "context": "Constant", "variant": "", "details": { - "name": "eUiTooltipDisplayAutoPositionMode_OffsetFromMouse::Getter", - "category": "Constants" - } + "name": "Offset From Mouse", + "category": "Constants/UI/Tooltip Display Auto Position Mode" + }, + "methods": [ + { + "base": "GeteUiTooltipDisplayAutoPositionMode_OffsetFromMouse", + "details": { + "name": "Offset From Mouse" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnClick.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnClick.names index 607b9793a2..deb5b1696b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnClick.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnClick.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTooltipDisplayTriggerMode_OnClick", + "base": "eUiTooltipDisplayTriggerMode_OnClick", "context": "Constant", "variant": "", "details": { - "name": "eUiTooltipDisplayTriggerMode_OnClick::Getter", - "category": "Constants" - } + "name": "On Click", + "category": "Constants/UI/Tooltip Display Trigger Mode" + }, + "methods": [ + { + "base": "GeteUiTooltipDisplayTriggerMode_OnClick", + "details": { + "name": "On Click" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnHover.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnHover.names index 705be843d8..e118eeafbc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnHover.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnHover.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTooltipDisplayTriggerMode_OnHover", + "base": "eUiTooltipDisplayTriggerMode_OnHover", "context": "Constant", "variant": "", "details": { - "name": "eUiTooltipDisplayTriggerMode_OnHover::Getter", - "category": "Constants" - } + "name": "On Hover", + "category": "Constants/UI/Tooltip Display Trigger Mode" + }, + "methods": [ + { + "base": "GeteUiTooltipDisplayTriggerMode_OnHover", + "details": { + "name": "On Hover" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnPress.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnPress.names index 28eb9c5118..f570902180 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnPress.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiTooltipDisplayTriggerMode_OnPress.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiTooltipDisplayTriggerMode_OnPress", + "base": "eUiTooltipDisplayTriggerMode_OnPress", "context": "Constant", "variant": "", "details": { - "name": "eUiTooltipDisplayTriggerMode_OnPress::Getter", - "category": "Constants" - } + "name": "On Press", + "category": "Constants/UI/Tooltip Display Trigger Mode" + }, + "methods": [ + { + "base": "GeteUiTooltipDisplayTriggerMode_OnPress", + "details": { + "name": "On Press" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Bottom.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Bottom.names index 46aa499d0b..b5c89b6b6c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Bottom.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Bottom.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiVAlign_Bottom", + "base": "eUiVAlign_Bottom", "context": "Constant", "variant": "", "details": { - "name": "eUiVAlign_Bottom::Getter", - "category": "Constants" - } + "name": "Vertical Align Bottom", + "category": "Constants/UI/Align" + }, + "methods": [ + { + "base": "GeteUiVAlign_Bottom", + "details": { + "name": "Vertical Align: Bottom" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Center.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Center.names index 2f64297cf4..ecdb75bda9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Center.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Center.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiVAlign_Center", + "base": "eUiVAlign_Center", "context": "Constant", "variant": "", "details": { - "name": "eUiVAlign_Center::Getter", - "category": "Constants" - } + "name": "Vertical Align Center", + "category": "Constants/UI/Align" + }, + "methods": [ + { + "base": "GeteUiVAlign_Center", + "details": { + "name": "Vertical Align: Center" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Top.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Top.names index d688313c21..f35d9ff698 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Top.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVAlign_Top.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiVAlign_Top", + "base": "eUiVAlign_Top", "context": "Constant", "variant": "", "details": { - "name": "eUiVAlign_Top::Getter", - "category": "Constants" - } + "name": "Vertical Align Top", + "category": "Constants/UI/Align" + }, + "methods": [ + { + "base": "GeteUiVAlign_Top", + "details": { + "name": "Vertical Align: Top" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVerticalOrder_BottomToTop.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVerticalOrder_BottomToTop.names index a9f3b06c9a..06edfefaef 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVerticalOrder_BottomToTop.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVerticalOrder_BottomToTop.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiVerticalOrder_BottomToTop", + "base": "eUiVerticalOrder_BottomToTop", "context": "Constant", "variant": "", "details": { - "name": "eUiVerticalOrder_BottomToTop::Getter", - "category": "Constants" - } + "name": "Bottom To Top", + "category": "Constants/UI/Order/Vertical" + }, + "methods": [ + { + "base": "GeteUiVerticalOrder_BottomToTop", + "details": { + "name": "Bottom To Top" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVerticalOrder_TopToBottom.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVerticalOrder_TopToBottom.names index 67532f62eb..ff4d7ec7ec 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVerticalOrder_TopToBottom.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/eUiVerticalOrder_TopToBottom.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "eUiVerticalOrder_TopToBottom", + "base": "eUiVerticalOrder_TopToBottom", "context": "Constant", "variant": "", "details": { - "name": "eUiVerticalOrder_TopToBottom::Getter", - "category": "Constants" - } + "name": "Top To Bottom", + "category": "Constants/UI/Order/Vertical" + }, + "methods": [ + { + "base": "GeteUiVerticalOrder_TopToBottom", + "details": { + "name": "Top To Bottom" + }, + "results": [ + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "int" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/g_ProfilerSystem.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/g_ProfilerSystem.names new file mode 100644 index 0000000000..679cd307c8 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/g_ProfilerSystem.names @@ -0,0 +1,29 @@ +{ + "entries": [ + { + "base": "g_ProfilerSystem", + "context": "Constant", + "variant": "", + "details": { + "name": "Profiler System", + "category": "Constants/Profiler" + }, + "methods": [ + { + "base": "Getg_ProfilerSystem", + "details": { + "name": "Profiler System" + }, + "results": [ + { + "typeid": "{D671FB70-8B09-4C3A-96CD-06A339F3138E}", + "details": { + "name": "Profiler System Script Proxy" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/g_SettingsRegistry.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/g_SettingsRegistry.names index a713b4f4fa..5d7a8dfba7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/g_SettingsRegistry.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Properties/g_SettingsRegistry.names @@ -1,13 +1,29 @@ { "entries": [ { - "key": "g_SettingsRegistry", + "base": "g_SettingsRegistry", "context": "Constant", "variant": "", "details": { - "name": "g_SettingsRegistry::Getter", - "category": "Constants" - } + "name": "Settings Registry", + "category": "Constants/Settings" + }, + "methods": [ + { + "base": "Getg_SettingsRegistry", + "details": { + "name": "Settings Registry" + }, + "results": [ + { + "typeid": "{795C80A0-D243-473B-972A-C32CA487BAA5}", + "details": { + "name": "Settings Registry Script Proxy" + } + } + ] + } + ] } ] } \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Types/OnDemandReflectedTypes.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Types/OnDemandReflectedTypes.names index bf62ef5e72..fcd616b9ed 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Types/OnDemandReflectedTypes.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Types/OnDemandReflectedTypes.names @@ -1,7 +1,7 @@ { "entries": [ { - "key": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", + "base": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "context": "OnDemandReflected", "variant": "", "details": { @@ -11,7 +11,7 @@ }, "methods": [ { - "key": "Front", + "base": "Front", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -42,7 +42,7 @@ ] }, { - "key": "Fill", + "base": "Fill", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -71,7 +71,7 @@ ] }, { - "key": "Replace", + "base": "Replace", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -114,7 +114,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -145,7 +145,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -176,7 +176,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -213,7 +213,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -242,7 +242,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -279,7 +279,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{E65D74A8-908B-51B4-94CC-7226AC363DD5}", "entry": { "name": "In", @@ -312,7 +312,7 @@ ] }, { - "key": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", + "base": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -322,7 +322,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -359,7 +359,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -402,7 +402,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -431,7 +431,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -462,7 +462,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -493,7 +493,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -524,7 +524,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -555,7 +555,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -592,7 +592,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -629,7 +629,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -660,7 +660,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -697,7 +697,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -728,7 +728,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -759,7 +759,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{232F1AE7-4411-5D69-B59C-71D7036FC5E4}", "entry": { "name": "In", @@ -790,7 +790,7 @@ ] }, { - "key": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", + "base": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "context": "OnDemandReflected", "variant": "", "details": { @@ -800,7 +800,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -837,7 +837,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -880,7 +880,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -909,7 +909,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -940,7 +940,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -971,7 +971,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1002,7 +1002,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1033,7 +1033,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1070,7 +1070,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1107,7 +1107,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1138,7 +1138,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1175,7 +1175,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1206,7 +1206,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1237,7 +1237,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{53A388FF-F69B-5F31-94CC-441F9D7F3ACC}", "entry": { "name": "In", @@ -1268,7 +1268,7 @@ ] }, { - "key": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", + "base": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "context": "OnDemandReflected", "variant": "", "details": { @@ -1278,7 +1278,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1315,7 +1315,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1358,7 +1358,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1387,7 +1387,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1418,7 +1418,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1449,7 +1449,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1480,7 +1480,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1511,7 +1511,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1548,7 +1548,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1585,7 +1585,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1616,7 +1616,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1653,7 +1653,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1684,7 +1684,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1715,7 +1715,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{7AB203ED-4DE1-5DB6-AE1F-23E8D6104EE5}", "entry": { "name": "In", @@ -1746,7 +1746,7 @@ ] }, { - "key": "{E3FCF041-81CA-5782-9530-CC7793B53765}", + "base": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "context": "OnDemandReflected", "variant": "", "details": { @@ -1756,7 +1756,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -1793,7 +1793,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -1836,7 +1836,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -1865,7 +1865,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -1896,7 +1896,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -1927,7 +1927,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -1958,7 +1958,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -1989,7 +1989,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -2026,7 +2026,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -2063,7 +2063,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -2094,7 +2094,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -2131,7 +2131,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -2162,7 +2162,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -2193,7 +2193,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E3FCF041-81CA-5782-9530-CC7793B53765}", "entry": { "name": "In", @@ -2224,7 +2224,7 @@ ] }, { - "key": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", + "base": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -2234,7 +2234,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2271,7 +2271,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2314,7 +2314,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2343,7 +2343,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2374,7 +2374,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2405,7 +2405,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2436,7 +2436,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2467,7 +2467,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2504,7 +2504,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2541,7 +2541,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2572,7 +2572,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2609,7 +2609,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2640,7 +2640,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2671,7 +2671,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{DA54CF57-7BE3-59DF-A5B0-F4CA6D9CC01A}", "entry": { "name": "In", @@ -2702,7 +2702,7 @@ ] }, { - "key": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", + "base": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "context": "OnDemandReflected", "variant": "", "details": { @@ -2712,7 +2712,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -2749,7 +2749,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -2792,7 +2792,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -2821,7 +2821,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -2852,7 +2852,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -2883,7 +2883,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -2914,7 +2914,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -2945,7 +2945,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -2982,7 +2982,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -3019,7 +3019,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -3050,7 +3050,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -3087,7 +3087,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -3118,7 +3118,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -3149,7 +3149,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{246A60D1-4DC3-57A5-BABA-214581F3B4FE}", "entry": { "name": "In", @@ -3180,7 +3180,7 @@ ] }, { - "key": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", + "base": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "context": "OnDemandReflected", "variant": "", "details": { @@ -3190,7 +3190,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3227,7 +3227,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3270,7 +3270,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3299,7 +3299,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3330,7 +3330,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3361,7 +3361,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3392,7 +3392,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3423,7 +3423,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3460,7 +3460,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3497,7 +3497,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3528,7 +3528,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3565,7 +3565,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3596,7 +3596,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3627,7 +3627,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{73383C40-9632-58AB-9CFE-E90C89E1C612}", "entry": { "name": "In", @@ -3658,7 +3658,7 @@ ] }, { - "key": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", + "base": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "context": "OnDemandReflected", "variant": "", "details": { @@ -3668,7 +3668,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3706,7 +3706,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3750,7 +3750,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3779,7 +3779,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3810,7 +3810,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3841,7 +3841,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3872,7 +3872,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3903,7 +3903,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3941,7 +3941,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -3979,7 +3979,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -4010,7 +4010,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -4048,7 +4048,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -4079,7 +4079,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -4110,7 +4110,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{F9AFBC85-749B-5A76-8E09-6B734D234C90}", "entry": { "name": "In", @@ -4141,7 +4141,7 @@ ] }, { - "key": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", + "base": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "context": "OnDemandReflected", "variant": "", "details": { @@ -4151,7 +4151,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4189,7 +4189,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4233,7 +4233,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4262,7 +4262,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4293,7 +4293,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4324,7 +4324,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4355,7 +4355,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4386,7 +4386,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4424,7 +4424,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4462,7 +4462,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4493,7 +4493,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4531,7 +4531,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4562,7 +4562,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4593,7 +4593,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{72FD3E42-33B1-5C20-92BE-20031CE205AC}", "entry": { "name": "In", @@ -4624,7 +4624,7 @@ ] }, { - "key": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", + "base": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "context": "OnDemandReflected", "variant": "", "details": { @@ -4634,7 +4634,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4672,7 +4672,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4716,7 +4716,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4745,7 +4745,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4776,7 +4776,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4807,7 +4807,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4838,7 +4838,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4869,7 +4869,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4907,7 +4907,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4945,7 +4945,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -4976,7 +4976,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -5014,7 +5014,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -5045,7 +5045,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -5076,7 +5076,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{20F3C1D8-E0E1-5211-BE7E-61EF5BD7F5FB}", "entry": { "name": "In", @@ -5107,7 +5107,7 @@ ] }, { - "key": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", + "base": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "context": "OnDemandReflected", "variant": "", "details": { @@ -5117,7 +5117,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5155,7 +5155,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5199,7 +5199,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5228,7 +5228,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5259,7 +5259,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5290,7 +5290,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5321,7 +5321,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5352,7 +5352,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5390,7 +5390,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5428,7 +5428,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5459,7 +5459,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5497,7 +5497,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5528,7 +5528,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5559,7 +5559,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{70470FDA-2C2E-549A-A67A-6FA7388FB823}", "entry": { "name": "In", @@ -5590,7 +5590,7 @@ ] }, { - "key": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", + "base": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "context": "OnDemandReflected", "variant": "", "details": { @@ -5600,7 +5600,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5637,7 +5637,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5680,7 +5680,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5709,7 +5709,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5740,7 +5740,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5771,7 +5771,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5802,7 +5802,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5833,7 +5833,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5870,7 +5870,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5907,7 +5907,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5938,7 +5938,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -5975,7 +5975,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -6006,7 +6006,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -6037,7 +6037,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{6018488A-73E5-5AE2-ACE7-62DAC3DBECB8}", "entry": { "name": "In", @@ -6068,7 +6068,7 @@ ] }, { - "key": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", + "base": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "context": "OnDemandReflected", "variant": "", "details": { @@ -6076,7 +6076,7 @@ }, "methods": [ { - "key": "IsLoading", + "base": "IsLoading", "context": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "entry": { "name": "In", @@ -6107,7 +6107,7 @@ ] }, { - "key": "GetType", + "base": "GetType", "context": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "entry": { "name": "In", @@ -6138,7 +6138,7 @@ ] }, { - "key": "IsError", + "base": "IsError", "context": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "entry": { "name": "In", @@ -6169,7 +6169,7 @@ ] }, { - "key": "GetHint", + "base": "GetHint", "context": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "entry": { "name": "In", @@ -6200,7 +6200,7 @@ ] }, { - "key": "GetData", + "base": "GetData", "context": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "entry": { "name": "In", @@ -6231,7 +6231,7 @@ ] }, { - "key": "IsReady", + "base": "IsReady", "context": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "entry": { "name": "In", @@ -6262,7 +6262,7 @@ ] }, { - "key": "GetStatus", + "base": "GetStatus", "context": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "entry": { "name": "In", @@ -6293,7 +6293,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "{C73A5FA9-295B-57F8-97D0-947B74603D96}", "entry": { "name": "In", @@ -6326,7 +6326,7 @@ ] }, { - "key": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", + "base": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -6336,7 +6336,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6373,7 +6373,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6416,7 +6416,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6445,7 +6445,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6476,7 +6476,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6507,7 +6507,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6538,7 +6538,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6569,7 +6569,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6606,7 +6606,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6643,7 +6643,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6674,7 +6674,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6711,7 +6711,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6742,7 +6742,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6773,7 +6773,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{EEE66112-B216-51A2-B10A-62F805C1C6F4}", "entry": { "name": "In", @@ -6804,7 +6804,7 @@ ] }, { - "key": "{428274AA-6C0B-5535-A5BD-E987696ED8E0}", + "base": "{428274AA-6C0B-5535-A5BD-E987696ED8E0}", "context": "OnDemandReflected", "variant": "", "details": { @@ -6812,7 +6812,7 @@ }, "methods": [ { - "key": "Failure", + "base": "Failure", "context": "{428274AA-6C0B-5535-A5BD-E987696ED8E0}", "entry": { "name": "In", @@ -6835,7 +6835,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{428274AA-6C0B-5535-A5BD-E987696ED8E0}", "entry": { "name": "In", @@ -6858,7 +6858,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{428274AA-6C0B-5535-A5BD-E987696ED8E0}", "entry": { "name": "In", @@ -6891,7 +6891,7 @@ ] }, { - "key": "{BFA7A8BD-787E-56C2-96C1-115A572EB249}", + "base": "{BFA7A8BD-787E-56C2-96C1-115A572EB249}", "context": "OnDemandReflected", "variant": "", "details": { @@ -6899,7 +6899,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{BFA7A8BD-787E-56C2-96C1-115A572EB249}", "entry": { "name": "In", @@ -6931,7 +6931,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{BFA7A8BD-787E-56C2-96C1-115A572EB249}", "entry": { "name": "In", @@ -6962,7 +6962,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{BFA7A8BD-787E-56C2-96C1-115A572EB249}", "entry": { "name": "In", @@ -6987,7 +6987,7 @@ ] }, { - "key": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", + "base": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -6997,7 +6997,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7034,7 +7034,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7077,7 +7077,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7106,7 +7106,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7137,7 +7137,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7168,7 +7168,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7199,7 +7199,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7230,7 +7230,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7267,7 +7267,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7304,7 +7304,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7335,7 +7335,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7372,7 +7372,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7403,7 +7403,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7434,7 +7434,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{961EE5AE-685E-5B9E-B3AC-604C5F2F4C1A}", "entry": { "name": "In", @@ -7465,7 +7465,7 @@ ] }, { - "key": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", + "base": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -7475,7 +7475,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7513,7 +7513,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7557,7 +7557,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7586,7 +7586,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7617,7 +7617,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7648,7 +7648,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7679,7 +7679,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7710,7 +7710,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7748,7 +7748,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7786,7 +7786,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7817,7 +7817,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7855,7 +7855,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7886,7 +7886,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7917,7 +7917,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{87073E82-1470-5DBD-92EB-ED294F351AB6}", "entry": { "name": "In", @@ -7948,7 +7948,7 @@ ] }, { - "key": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", + "base": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -7958,7 +7958,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -7995,7 +7995,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8038,7 +8038,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8067,7 +8067,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8098,7 +8098,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8129,7 +8129,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8160,7 +8160,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8191,7 +8191,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8228,7 +8228,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8265,7 +8265,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8296,7 +8296,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8333,7 +8333,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8364,7 +8364,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8395,7 +8395,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{C8E55ED7-2D57-586D-B8A4-BC3CF9A0883C}", "entry": { "name": "In", @@ -8426,7 +8426,7 @@ ] }, { - "key": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", + "base": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -8436,7 +8436,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8473,7 +8473,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8516,7 +8516,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8545,7 +8545,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8576,7 +8576,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8607,7 +8607,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8638,7 +8638,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8669,7 +8669,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8706,7 +8706,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8743,7 +8743,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8774,7 +8774,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8811,7 +8811,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8842,7 +8842,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8873,7 +8873,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{52BC39A3-063A-5CD4-99D4-4F018D7784D6}", "entry": { "name": "In", @@ -8904,7 +8904,7 @@ ] }, { - "key": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", + "base": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "context": "OnDemandReflected", "variant": "", "details": { @@ -8914,7 +8914,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -8951,7 +8951,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -8994,7 +8994,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9023,7 +9023,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9054,7 +9054,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9085,7 +9085,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9116,7 +9116,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9147,7 +9147,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9184,7 +9184,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9221,7 +9221,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9252,7 +9252,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9289,7 +9289,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9320,7 +9320,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9351,7 +9351,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{C5BB1B1A-9721-598B-8746-FAAA76B87464}", "entry": { "name": "In", @@ -9382,7 +9382,7 @@ ] }, { - "key": "{E13859C4-1F24-5C44-A133-F17B4B050D7C}", + "base": "{E13859C4-1F24-5C44-A133-F17B4B050D7C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -9392,7 +9392,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{E13859C4-1F24-5C44-A133-F17B4B050D7C}", "entry": { "name": "In", @@ -9426,7 +9426,7 @@ ] }, { - "key": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", + "base": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "context": "OnDemandReflected", "variant": "", "details": { @@ -9436,7 +9436,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9473,7 +9473,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9516,7 +9516,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9545,7 +9545,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9576,7 +9576,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9607,7 +9607,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9638,7 +9638,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9669,7 +9669,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9706,7 +9706,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9743,7 +9743,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9774,7 +9774,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9811,7 +9811,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9842,7 +9842,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9873,7 +9873,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{DC13DC44-BB50-5CCB-985E-C611AE891575}", "entry": { "name": "In", @@ -9904,7 +9904,7 @@ ] }, { - "key": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", + "base": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -9914,7 +9914,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -9951,7 +9951,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -9995,7 +9995,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10024,7 +10024,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10055,7 +10055,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10086,7 +10086,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10117,7 +10117,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10148,7 +10148,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10185,7 +10185,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10222,7 +10222,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10253,7 +10253,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10291,7 +10291,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10322,7 +10322,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10353,7 +10353,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{805FA2E4-1874-5919-A853-4EF984E5A82A}", "entry": { "name": "In", @@ -10384,7 +10384,7 @@ ] }, { - "key": "{03924488-C7F4-4D6D-948B-ABC2D1AE2FD3}", + "base": "{03924488-C7F4-4D6D-948B-ABC2D1AE2FD3}", "context": "OnDemandReflected", "variant": "", "details": { @@ -10392,7 +10392,7 @@ } }, { - "key": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", + "base": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -10402,7 +10402,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10439,7 +10439,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10482,7 +10482,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10511,7 +10511,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10542,7 +10542,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10573,7 +10573,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10604,7 +10604,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10635,7 +10635,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10672,7 +10672,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10709,7 +10709,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10740,7 +10740,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10777,7 +10777,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10808,7 +10808,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10839,7 +10839,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{C7790D21-4BE7-5C18-A60D-01FCFE4E7E7A}", "entry": { "name": "In", @@ -10870,7 +10870,7 @@ ] }, { - "key": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", + "base": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "context": "OnDemandReflected", "variant": "", "details": { @@ -10880,7 +10880,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -10911,7 +10911,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -10942,7 +10942,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -10979,7 +10979,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11008,7 +11008,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11045,7 +11045,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11076,7 +11076,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11099,7 +11099,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11130,7 +11130,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11167,7 +11167,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11198,7 +11198,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11227,7 +11227,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11256,7 +11256,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11293,7 +11293,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11330,7 +11330,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11353,7 +11353,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11384,7 +11384,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11421,7 +11421,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11458,7 +11458,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11489,7 +11489,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11520,7 +11520,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11555,7 +11555,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11586,7 +11586,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11629,7 +11629,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11658,7 +11658,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11687,7 +11687,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{1945B931-EBAA-5765-9C6C-265596AF68D5}", "entry": { "name": "In", @@ -11720,7 +11720,7 @@ ] }, { - "key": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", + "base": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "context": "OnDemandReflected", "variant": "", "details": { @@ -11730,7 +11730,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -11761,7 +11761,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -11792,7 +11792,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -11829,7 +11829,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -11858,7 +11858,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -11895,7 +11895,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -11926,7 +11926,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -11949,7 +11949,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -11980,7 +11980,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12017,7 +12017,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12048,7 +12048,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12077,7 +12077,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12106,7 +12106,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12143,7 +12143,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12180,7 +12180,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12203,7 +12203,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12234,7 +12234,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12271,7 +12271,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12308,7 +12308,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12339,7 +12339,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12370,7 +12370,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12405,7 +12405,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12436,7 +12436,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12479,7 +12479,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12508,7 +12508,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12537,7 +12537,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{877C4A33-39B5-51D7-948D-F97DB81372A1}", "entry": { "name": "In", @@ -12570,7 +12570,7 @@ ] }, { - "key": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", + "base": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "context": "OnDemandReflected", "variant": "", "details": { @@ -12580,7 +12580,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12611,7 +12611,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12642,7 +12642,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12679,7 +12679,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12708,7 +12708,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12745,7 +12745,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12776,7 +12776,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12799,7 +12799,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12830,7 +12830,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12867,7 +12867,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12898,7 +12898,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12927,7 +12927,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12956,7 +12956,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -12993,7 +12993,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13030,7 +13030,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13053,7 +13053,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13084,7 +13084,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13121,7 +13121,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13158,7 +13158,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13189,7 +13189,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13220,7 +13220,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13255,7 +13255,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13286,7 +13286,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13329,7 +13329,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13358,7 +13358,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13387,7 +13387,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{E7E44B3A-15C3-5420-A930-EB9ED7F0D7D9}", "entry": { "name": "In", @@ -13420,7 +13420,7 @@ ] }, { - "key": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", + "base": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "context": "OnDemandReflected", "variant": "", "details": { @@ -13430,7 +13430,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13467,7 +13467,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13510,7 +13510,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13539,7 +13539,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13570,7 +13570,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13601,7 +13601,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13632,7 +13632,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13663,7 +13663,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13700,7 +13700,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13737,7 +13737,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13768,7 +13768,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13805,7 +13805,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13836,7 +13836,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13867,7 +13867,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{9CA976B9-C166-5C5A-B544-746A06B9F534}", "entry": { "name": "In", @@ -13898,7 +13898,7 @@ ] }, { - "key": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", + "base": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "context": "OnDemandReflected", "variant": "", "details": { @@ -13908,7 +13908,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -13945,7 +13945,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -13989,7 +13989,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14018,7 +14018,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14049,7 +14049,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14080,7 +14080,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14111,7 +14111,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14142,7 +14142,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14179,7 +14179,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14216,7 +14216,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14247,7 +14247,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14285,7 +14285,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14316,7 +14316,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14347,7 +14347,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{B7CEA1B1-C931-5566-AECA-B8AF02138CAA}", "entry": { "name": "In", @@ -14378,7 +14378,7 @@ ] }, { - "key": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", + "base": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -14388,7 +14388,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14419,7 +14419,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14451,7 +14451,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14488,7 +14488,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14517,7 +14517,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14555,7 +14555,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14587,7 +14587,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14610,7 +14610,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14641,7 +14641,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14679,7 +14679,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14710,7 +14710,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14739,7 +14739,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14769,7 +14769,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14807,7 +14807,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14845,7 +14845,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14868,7 +14868,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14899,7 +14899,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14936,7 +14936,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -14973,7 +14973,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -15004,7 +15004,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -15035,7 +15035,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -15071,7 +15071,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -15102,7 +15102,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -15146,7 +15146,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -15176,7 +15176,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -15205,7 +15205,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{D9866B79-D11A-58E6-B974-0B45783F53A4}", "entry": { "name": "In", @@ -15238,7 +15238,7 @@ ] }, { - "key": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", + "base": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "context": "OnDemandReflected", "variant": "", "details": { @@ -15248,7 +15248,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15279,7 +15279,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15310,7 +15310,7 @@ ] }, { - "key": "contains", + "base": "contains", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15348,7 +15348,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15386,7 +15386,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15417,7 +15417,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15446,7 +15446,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15477,7 +15477,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15515,7 +15515,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15553,7 +15553,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15584,7 +15584,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15615,7 +15615,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15646,7 +15646,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{6C8F8E52-AB4A-5C1F-8E56-9AC390290B94}", "entry": { "name": "In", @@ -15677,7 +15677,7 @@ ] }, { - "key": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", + "base": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "context": "OnDemandReflected", "variant": "", "details": { @@ -15687,7 +15687,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15724,7 +15724,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15767,7 +15767,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15796,7 +15796,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15827,7 +15827,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15858,7 +15858,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15889,7 +15889,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15920,7 +15920,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15957,7 +15957,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -15994,7 +15994,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -16025,7 +16025,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -16062,7 +16062,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -16093,7 +16093,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -16124,7 +16124,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{4F67EE42-D330-55A1-85DC-E030EABC0407}", "entry": { "name": "In", @@ -16155,7 +16155,7 @@ ] }, { - "key": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", + "base": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "context": "OnDemandReflected", "variant": "", "details": { @@ -16165,7 +16165,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16196,7 +16196,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16227,7 +16227,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16264,7 +16264,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16293,7 +16293,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16330,7 +16330,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16361,7 +16361,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16384,7 +16384,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16415,7 +16415,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16452,7 +16452,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16483,7 +16483,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16512,7 +16512,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16541,7 +16541,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16578,7 +16578,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16615,7 +16615,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16638,7 +16638,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16669,7 +16669,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16706,7 +16706,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16743,7 +16743,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16774,7 +16774,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16805,7 +16805,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16840,7 +16840,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16871,7 +16871,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16914,7 +16914,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16943,7 +16943,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -16972,7 +16972,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{E3B6686C-306E-5C7F-9274-196CC18E1284}", "entry": { "name": "In", @@ -17005,7 +17005,7 @@ ] }, { - "key": "{0521985E-FC3D-5123-922A-E4011E605660}", + "base": "{0521985E-FC3D-5123-922A-E4011E605660}", "context": "OnDemandReflected", "variant": "", "details": { @@ -17015,7 +17015,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17052,7 +17052,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17095,7 +17095,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17124,7 +17124,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17155,7 +17155,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17186,7 +17186,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17217,7 +17217,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17248,7 +17248,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17285,7 +17285,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17322,7 +17322,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17353,7 +17353,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17390,7 +17390,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17421,7 +17421,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17452,7 +17452,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{0521985E-FC3D-5123-922A-E4011E605660}", "entry": { "name": "In", @@ -17483,7 +17483,7 @@ ] }, { - "key": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", + "base": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -17493,7 +17493,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17530,7 +17530,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17573,7 +17573,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17602,7 +17602,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17633,7 +17633,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17664,7 +17664,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17695,7 +17695,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17726,7 +17726,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17763,7 +17763,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17800,7 +17800,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17831,7 +17831,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17868,7 +17868,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17899,7 +17899,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17930,7 +17930,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{2A1A28D5-E14E-5F25-B2EE-48722008285A}", "entry": { "name": "In", @@ -17961,7 +17961,7 @@ ] }, { - "key": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", + "base": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "context": "OnDemandReflected", "variant": "", "details": { @@ -17971,7 +17971,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18008,7 +18008,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18051,7 +18051,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18080,7 +18080,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18111,7 +18111,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18142,7 +18142,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18173,7 +18173,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18204,7 +18204,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18241,7 +18241,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18278,7 +18278,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18309,7 +18309,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18346,7 +18346,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18377,7 +18377,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18408,7 +18408,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{6576DA9C-8949-513E-BA75-1DFFF648EDAF}", "entry": { "name": "In", @@ -18439,7 +18439,7 @@ ] }, { - "key": "{92FC6941-F5F5-5141-97A4-1965FC8B09CD}", + "base": "{92FC6941-F5F5-5141-97A4-1965FC8B09CD}", "context": "OnDemandReflected", "variant": "", "details": { @@ -18447,7 +18447,7 @@ }, "methods": [ { - "key": "Failure", + "base": "Failure", "context": "{92FC6941-F5F5-5141-97A4-1965FC8B09CD}", "entry": { "name": "In", @@ -18470,7 +18470,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{92FC6941-F5F5-5141-97A4-1965FC8B09CD}", "entry": { "name": "In", @@ -18501,7 +18501,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "context": "{92FC6941-F5F5-5141-97A4-1965FC8B09CD}", "entry": { "name": "In", @@ -18532,7 +18532,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{92FC6941-F5F5-5141-97A4-1965FC8B09CD}", "entry": { "name": "In", @@ -18565,7 +18565,7 @@ ] }, { - "key": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", + "base": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "context": "OnDemandReflected", "variant": "", "details": { @@ -18575,7 +18575,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18612,7 +18612,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18655,7 +18655,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18684,7 +18684,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18715,7 +18715,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18746,7 +18746,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18777,7 +18777,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18808,7 +18808,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18845,7 +18845,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18882,7 +18882,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18913,7 +18913,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18950,7 +18950,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -18981,7 +18981,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -19012,7 +19012,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{230FE638-B7E6-5E7B-8D2F-B05D9313AC9F}", "entry": { "name": "In", @@ -19043,7 +19043,7 @@ ] }, { - "key": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", + "base": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -19053,7 +19053,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19090,7 +19090,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19133,7 +19133,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19162,7 +19162,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19193,7 +19193,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19224,7 +19224,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19255,7 +19255,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19286,7 +19286,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19323,7 +19323,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19360,7 +19360,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19391,7 +19391,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19428,7 +19428,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19459,7 +19459,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19490,7 +19490,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{BC52AD94-A35B-5837-A8D8-A99B2AF7D4B4}", "entry": { "name": "In", @@ -19521,7 +19521,7 @@ ] }, { - "key": "{BEB6AE51-5283-5019-A320-294202035F80}", + "base": "{BEB6AE51-5283-5019-A320-294202035F80}", "context": "OnDemandReflected", "variant": "", "details": { @@ -19531,7 +19531,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19568,7 +19568,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19611,7 +19611,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19640,7 +19640,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19671,7 +19671,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19702,7 +19702,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19733,7 +19733,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19764,7 +19764,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19801,7 +19801,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19838,7 +19838,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19869,7 +19869,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19906,7 +19906,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19937,7 +19937,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19968,7 +19968,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{BEB6AE51-5283-5019-A320-294202035F80}", "entry": { "name": "In", @@ -19999,7 +19999,7 @@ ] }, { - "key": "{2E879A16-9143-5862-A5B3-EDED931C60BC}", + "base": "{2E879A16-9143-5862-A5B3-EDED931C60BC}", "context": "OnDemandReflected", "variant": "", "details": { @@ -20009,7 +20009,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{2E879A16-9143-5862-A5B3-EDED931C60BC}", "entry": { "name": "In", @@ -20043,7 +20043,7 @@ ] }, { - "key": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", + "base": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "context": "OnDemandReflected", "variant": "", "details": { @@ -20051,7 +20051,7 @@ }, "methods": [ { - "key": "One", + "base": "One", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20074,7 +20074,7 @@ ] }, { - "key": "LinearToGamma", + "base": "LinearToGamma", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20105,7 +20105,7 @@ ] }, { - "key": "FromVector3", + "base": "FromVector3", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20136,7 +20136,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20173,7 +20173,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20204,7 +20204,7 @@ ] }, { - "key": "Dot3", + "base": "Dot3", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20241,7 +20241,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20278,7 +20278,7 @@ ] }, { - "key": "FromValues", + "base": "FromValues", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20327,7 +20327,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20364,7 +20364,7 @@ ] }, { - "key": "FromVector3AndNumber", + "base": "FromVector3AndNumber", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20401,7 +20401,7 @@ ] }, { - "key": "GammaToLinear", + "base": "GammaToLinear", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20432,7 +20432,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20475,7 +20475,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20512,7 +20512,7 @@ ] }, { - "key": "MultiplyByColor", + "base": "MultiplyByColor", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20549,7 +20549,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20586,7 +20586,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "{6CC7B2F9-F551-4CB8-A713-4149959AE337}", "entry": { "name": "In", @@ -20625,7 +20625,7 @@ ] }, { - "key": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", + "base": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "context": "OnDemandReflected", "variant": "", "details": { @@ -20635,7 +20635,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20672,7 +20672,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20715,7 +20715,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20744,7 +20744,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20775,7 +20775,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20806,7 +20806,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20837,7 +20837,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20868,7 +20868,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20905,7 +20905,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20942,7 +20942,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -20973,7 +20973,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -21010,7 +21010,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -21041,7 +21041,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -21072,7 +21072,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{50F6716F-698B-5A6C-AACD-940597FDEC24}", "entry": { "name": "In", @@ -21103,7 +21103,7 @@ ] }, { - "key": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", + "base": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "context": "OnDemandReflected", "variant": "", "details": { @@ -21113,7 +21113,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21150,7 +21150,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21193,7 +21193,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21222,7 +21222,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21253,7 +21253,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21284,7 +21284,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21315,7 +21315,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21346,7 +21346,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21383,7 +21383,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21420,7 +21420,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21451,7 +21451,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21488,7 +21488,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21519,7 +21519,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21550,7 +21550,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{B7B3058C-1E07-528C-A40D-F5C598CBF4EE}", "entry": { "name": "In", @@ -21581,7 +21581,7 @@ ] }, { - "key": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", + "base": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "context": "OnDemandReflected", "variant": "", "details": { @@ -21591,7 +21591,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21628,7 +21628,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21671,7 +21671,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21700,7 +21700,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21731,7 +21731,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21762,7 +21762,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21793,7 +21793,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21824,7 +21824,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21861,7 +21861,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21898,7 +21898,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21929,7 +21929,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21966,7 +21966,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -21997,7 +21997,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -22028,7 +22028,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{FDE6FB0D-D37B-58F4-9941-97F58D111A1B}", "entry": { "name": "In", @@ -22059,7 +22059,7 @@ ] }, { - "key": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", + "base": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -22067,7 +22067,7 @@ }, "methods": [ { - "key": "GetPosition", + "base": "GetPosition", "context": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", "entry": { "name": "In", @@ -22098,7 +22098,7 @@ ] }, { - "key": "GetAxisY", + "base": "GetAxisY", "context": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", "entry": { "name": "In", @@ -22129,7 +22129,7 @@ ] }, { - "key": "GetAxisX", + "base": "GetAxisX", "context": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", "entry": { "name": "In", @@ -22160,7 +22160,7 @@ ] }, { - "key": "FromAabb", + "base": "FromAabb", "context": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", "entry": { "name": "In", @@ -22191,7 +22191,7 @@ ] }, { - "key": "FromPositionRotationAndHalfLengths", + "base": "FromPositionRotationAndHalfLengths", "context": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", "entry": { "name": "In", @@ -22234,7 +22234,7 @@ ] }, { - "key": "GetAxisZ", + "base": "GetAxisZ", "context": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", "entry": { "name": "In", @@ -22265,7 +22265,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{8CBDA3B7-9DCD-4A04-A12C-123C322CA63A}", "entry": { "name": "In", @@ -22298,7 +22298,7 @@ ] }, { - "key": "{781AD4B3-F61B-5C95-9447-F90AB07AB480}", + "base": "{781AD4B3-F61B-5C95-9447-F90AB07AB480}", "context": "OnDemandReflected", "variant": "", "details": { @@ -22308,7 +22308,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{781AD4B3-F61B-5C95-9447-F90AB07AB480}", "entry": { "name": "In", @@ -22341,7 +22341,7 @@ ] }, { - "key": "{33844DCE-75B0-5734-A1B7-7C44199D1D5E}", + "base": "{33844DCE-75B0-5734-A1B7-7C44199D1D5E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -22349,7 +22349,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{33844DCE-75B0-5734-A1B7-7C44199D1D5E}", "entry": { "name": "In", @@ -22380,7 +22380,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{33844DCE-75B0-5734-A1B7-7C44199D1D5E}", "entry": { "name": "In", @@ -22411,7 +22411,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{33844DCE-75B0-5734-A1B7-7C44199D1D5E}", "entry": { "name": "In", @@ -22436,7 +22436,7 @@ ] }, { - "key": "{009022A1-16A5-50B0-958F-F69C729985A3}", + "base": "{009022A1-16A5-50B0-958F-F69C729985A3}", "context": "OnDemandReflected", "variant": "", "details": { @@ -22446,7 +22446,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22477,7 +22477,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22508,7 +22508,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22545,7 +22545,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22574,7 +22574,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22611,7 +22611,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22642,7 +22642,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22665,7 +22665,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22696,7 +22696,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22733,7 +22733,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22764,7 +22764,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22793,7 +22793,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22822,7 +22822,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22859,7 +22859,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22896,7 +22896,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22919,7 +22919,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22950,7 +22950,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -22987,7 +22987,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23024,7 +23024,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23055,7 +23055,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23086,7 +23086,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23121,7 +23121,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23152,7 +23152,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23195,7 +23195,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23224,7 +23224,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23253,7 +23253,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{009022A1-16A5-50B0-958F-F69C729985A3}", "entry": { "name": "In", @@ -23286,7 +23286,7 @@ ] }, { - "key": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", + "base": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -23296,7 +23296,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23333,7 +23333,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23376,7 +23376,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23405,7 +23405,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23436,7 +23436,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23467,7 +23467,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23498,7 +23498,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23529,7 +23529,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23566,7 +23566,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23603,7 +23603,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23634,7 +23634,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23671,7 +23671,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23702,7 +23702,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23733,7 +23733,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", "entry": { "name": "In", @@ -23764,7 +23764,7 @@ ] }, { - "key": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", + "base": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "context": "OnDemandReflected", "variant": "", "details": { @@ -23774,7 +23774,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -23811,7 +23811,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -23854,7 +23854,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -23883,7 +23883,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -23914,7 +23914,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -23945,7 +23945,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -23976,7 +23976,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -24007,7 +24007,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -24044,7 +24044,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -24081,7 +24081,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -24112,7 +24112,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -24149,7 +24149,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -24180,7 +24180,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -24211,7 +24211,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{65F4A570-CBE4-5E03-A397-7F0BD8DE3831}", "entry": { "name": "In", @@ -24242,7 +24242,7 @@ ] }, { - "key": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", + "base": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "context": "OnDemandReflected", "variant": "", "details": { @@ -24252,7 +24252,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24283,7 +24283,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24314,7 +24314,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24351,7 +24351,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24380,7 +24380,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24417,7 +24417,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24448,7 +24448,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24471,7 +24471,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24502,7 +24502,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24539,7 +24539,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24570,7 +24570,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24599,7 +24599,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24628,7 +24628,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24665,7 +24665,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24702,7 +24702,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24725,7 +24725,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24756,7 +24756,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24793,7 +24793,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24830,7 +24830,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24861,7 +24861,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24892,7 +24892,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24927,7 +24927,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -24958,7 +24958,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -25001,7 +25001,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -25030,7 +25030,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -25059,7 +25059,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}", "entry": { "name": "In", @@ -25092,7 +25092,7 @@ ] }, { - "key": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", + "base": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -25102,7 +25102,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25133,7 +25133,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25164,7 +25164,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25201,7 +25201,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25230,7 +25230,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25267,7 +25267,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25298,7 +25298,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25321,7 +25321,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25352,7 +25352,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25389,7 +25389,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25420,7 +25420,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25449,7 +25449,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25478,7 +25478,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25515,7 +25515,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25552,7 +25552,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25575,7 +25575,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25606,7 +25606,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25643,7 +25643,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25680,7 +25680,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25711,7 +25711,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25742,7 +25742,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25777,7 +25777,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25808,7 +25808,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25851,7 +25851,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25880,7 +25880,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25909,7 +25909,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{5600E444-1E66-5CB4-81A9-053AD1F4453E}", "entry": { "name": "In", @@ -25942,7 +25942,7 @@ ] }, { - "key": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", + "base": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -25952,7 +25952,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -25989,7 +25989,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26032,7 +26032,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26061,7 +26061,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26092,7 +26092,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26123,7 +26123,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26154,7 +26154,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26185,7 +26185,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26222,7 +26222,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26259,7 +26259,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26290,7 +26290,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26327,7 +26327,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26358,7 +26358,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26389,7 +26389,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{8B173592-95EA-56B6-AE88-33A58FDAF93E}", "entry": { "name": "In", @@ -26420,7 +26420,7 @@ ] }, { - "key": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", + "base": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "context": "OnDemandReflected", "variant": "", "details": { @@ -26430,7 +26430,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26461,7 +26461,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26492,7 +26492,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26529,7 +26529,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26558,7 +26558,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26595,7 +26595,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26626,7 +26626,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26649,7 +26649,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26680,7 +26680,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26717,7 +26717,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26748,7 +26748,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26777,7 +26777,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26806,7 +26806,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26843,7 +26843,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26880,7 +26880,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26903,7 +26903,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26934,7 +26934,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -26971,7 +26971,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27008,7 +27008,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27039,7 +27039,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27070,7 +27070,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27105,7 +27105,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27136,7 +27136,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27179,7 +27179,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27208,7 +27208,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27237,7 +27237,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{E8EDFF6E-951E-584D-9D47-33F43F77D859}", "entry": { "name": "In", @@ -27270,7 +27270,7 @@ ] }, { - "key": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", + "base": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "context": "OnDemandReflected", "variant": "", "details": { @@ -27280,7 +27280,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27311,7 +27311,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27342,7 +27342,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27379,7 +27379,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27408,7 +27408,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27445,7 +27445,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27476,7 +27476,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27499,7 +27499,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27530,7 +27530,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27567,7 +27567,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27598,7 +27598,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27627,7 +27627,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27656,7 +27656,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27693,7 +27693,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27730,7 +27730,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27753,7 +27753,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27784,7 +27784,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27821,7 +27821,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27858,7 +27858,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27889,7 +27889,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27920,7 +27920,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27955,7 +27955,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -27986,7 +27986,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -28029,7 +28029,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -28058,7 +28058,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -28087,7 +28087,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}", "entry": { "name": "In", @@ -28120,7 +28120,7 @@ ] }, { - "key": "{0D5A4347-BCEC-58D6-A2D5-259F78FA0BF0}", + "base": "{0D5A4347-BCEC-58D6-A2D5-259F78FA0BF0}", "context": "OnDemandReflected", "variant": "", "details": { @@ -28128,7 +28128,7 @@ }, "methods": [ { - "key": "Failure", + "base": "Failure", "context": "{0D5A4347-BCEC-58D6-A2D5-259F78FA0BF0}", "entry": { "name": "In", @@ -28159,7 +28159,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{0D5A4347-BCEC-58D6-A2D5-259F78FA0BF0}", "entry": { "name": "In", @@ -28182,7 +28182,7 @@ ] }, { - "key": "GetError", + "base": "GetError", "context": "{0D5A4347-BCEC-58D6-A2D5-259F78FA0BF0}", "entry": { "name": "In", @@ -28213,7 +28213,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{0D5A4347-BCEC-58D6-A2D5-259F78FA0BF0}", "entry": { "name": "In", @@ -28246,7 +28246,7 @@ ] }, { - "key": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", + "base": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "context": "OnDemandReflected", "variant": "", "details": { @@ -28256,7 +28256,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28294,7 +28294,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28338,7 +28338,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28367,7 +28367,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28398,7 +28398,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28429,7 +28429,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28460,7 +28460,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28491,7 +28491,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28529,7 +28529,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28567,7 +28567,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28598,7 +28598,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28636,7 +28636,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28667,7 +28667,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28698,7 +28698,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E77BCFE0-1C44-57B3-9651-CA647A4F4980}", "entry": { "name": "In", @@ -28729,7 +28729,7 @@ ] }, { - "key": "{36AD4D04-5A5D-52DC-A864-7027D563EFA2}", + "base": "{36AD4D04-5A5D-52DC-A864-7027D563EFA2}", "context": "OnDemandReflected", "variant": "", "details": { @@ -28737,7 +28737,7 @@ }, "methods": [ { - "key": "HasHandlerConnected", + "base": "HasHandlerConnected", "context": "{36AD4D04-5A5D-52DC-A864-7027D563EFA2}", "entry": { "name": "In", @@ -28770,7 +28770,7 @@ ] }, { - "key": "{D1FEE25B-F252-5625-863C-1312E1F822A0}", + "base": "{D1FEE25B-F252-5625-863C-1312E1F822A0}", "context": "OnDemandReflected", "variant": "", "details": { @@ -28778,7 +28778,7 @@ }, "methods": [ { - "key": "Failure", + "base": "Failure", "context": "{D1FEE25B-F252-5625-863C-1312E1F822A0}", "entry": { "name": "In", @@ -28801,7 +28801,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{D1FEE25B-F252-5625-863C-1312E1F822A0}", "entry": { "name": "In", @@ -28832,7 +28832,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "context": "{D1FEE25B-F252-5625-863C-1312E1F822A0}", "entry": { "name": "In", @@ -28863,7 +28863,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{D1FEE25B-F252-5625-863C-1312E1F822A0}", "entry": { "name": "In", @@ -28896,7 +28896,7 @@ ] }, { - "key": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", + "base": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "context": "OnDemandReflected", "variant": "", "details": { @@ -28906,7 +28906,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -28937,7 +28937,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -28968,7 +28968,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29005,7 +29005,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29034,7 +29034,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29071,7 +29071,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29102,7 +29102,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29125,7 +29125,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29156,7 +29156,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29193,7 +29193,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29224,7 +29224,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29253,7 +29253,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29282,7 +29282,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29319,7 +29319,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29356,7 +29356,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29379,7 +29379,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29410,7 +29410,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29447,7 +29447,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29484,7 +29484,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29515,7 +29515,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29546,7 +29546,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29581,7 +29581,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29612,7 +29612,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29655,7 +29655,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29684,7 +29684,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29713,7 +29713,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{33492660-D9A8-5E84-9CFB-03CBCD87919F}", "entry": { "name": "In", @@ -29746,7 +29746,7 @@ ] }, { - "key": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", + "base": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "context": "OnDemandReflected", "variant": "", "details": { @@ -29756,7 +29756,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -29793,7 +29793,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -29836,7 +29836,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -29865,7 +29865,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -29896,7 +29896,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -29927,7 +29927,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -29958,7 +29958,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -29989,7 +29989,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -30026,7 +30026,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -30063,7 +30063,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -30094,7 +30094,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -30131,7 +30131,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -30162,7 +30162,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -30193,7 +30193,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{6E6962E1-04C9-56F9-89C4-361031CC1384}", "entry": { "name": "In", @@ -30224,7 +30224,7 @@ ] }, { - "key": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", + "base": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "context": "OnDemandReflected", "variant": "", "details": { @@ -30234,7 +30234,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30265,7 +30265,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30296,7 +30296,7 @@ ] }, { - "key": "contains", + "base": "contains", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30333,7 +30333,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30370,7 +30370,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30401,7 +30401,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30430,7 +30430,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30461,7 +30461,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30498,7 +30498,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30535,7 +30535,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30566,7 +30566,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30597,7 +30597,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30628,7 +30628,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{8A408689-0904-5A87-B6C4-FAB519089D8B}", "entry": { "name": "In", @@ -30659,7 +30659,7 @@ ] }, { - "key": "{C0311D23-97F1-556C-B6A4-ECD726543686}", + "base": "{C0311D23-97F1-556C-B6A4-ECD726543686}", "context": "OnDemandReflected", "variant": "", "details": { @@ -30669,7 +30669,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{C0311D23-97F1-556C-B6A4-ECD726543686}", "entry": { "name": "In", @@ -30702,7 +30702,7 @@ ] }, { - "key": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", + "base": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "context": "OnDemandReflected", "variant": "", "details": { @@ -30712,7 +30712,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -30749,7 +30749,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -30792,7 +30792,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -30821,7 +30821,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -30852,7 +30852,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -30883,7 +30883,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -30914,7 +30914,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -30945,7 +30945,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -30982,7 +30982,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -31019,7 +31019,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -31050,7 +31050,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -31087,7 +31087,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -31118,7 +31118,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -31149,7 +31149,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{41599134-C1BF-51A5-B66A-7351FFD5EF42}", "entry": { "name": "In", @@ -31180,7 +31180,7 @@ ] }, { - "key": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", + "base": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -31190,7 +31190,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31227,7 +31227,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31270,7 +31270,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31299,7 +31299,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31330,7 +31330,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31361,7 +31361,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31392,7 +31392,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31423,7 +31423,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31460,7 +31460,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31497,7 +31497,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31528,7 +31528,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31565,7 +31565,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31596,7 +31596,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31627,7 +31627,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{EEB1809B-78BA-5073-AEF8-8CC85F43DB4A}", "entry": { "name": "In", @@ -31658,7 +31658,7 @@ ] }, { - "key": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", + "base": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "context": "OnDemandReflected", "variant": "", "details": { @@ -31666,7 +31666,7 @@ }, "methods": [ { - "key": "remove_prefix", + "base": "remove_prefix", "context": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "entry": { "name": "In", @@ -31695,7 +31695,7 @@ ] }, { - "key": "substr", + "base": "substr", "context": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "entry": { "name": "In", @@ -31738,7 +31738,7 @@ ] }, { - "key": "find", + "base": "find", "context": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "entry": { "name": "In", @@ -31781,7 +31781,7 @@ ] }, { - "key": "length", + "base": "length", "context": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "entry": { "name": "In", @@ -31812,7 +31812,7 @@ ] }, { - "key": "data", + "base": "data", "context": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "entry": { "name": "In", @@ -31843,7 +31843,7 @@ ] }, { - "key": "ToString", + "base": "ToString", "context": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "entry": { "name": "In", @@ -31874,7 +31874,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "entry": { "name": "In", @@ -31905,7 +31905,7 @@ ] }, { - "key": "remove_suffix", + "base": "remove_suffix", "context": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "entry": { "name": "In", @@ -31936,7 +31936,7 @@ ] }, { - "key": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", + "base": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "context": "OnDemandReflected", "variant": "", "details": { @@ -31946,7 +31946,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -31983,7 +31983,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32026,7 +32026,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32055,7 +32055,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32086,7 +32086,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32117,7 +32117,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32148,7 +32148,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32179,7 +32179,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32216,7 +32216,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32253,7 +32253,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32284,7 +32284,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32321,7 +32321,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32352,7 +32352,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32383,7 +32383,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{F17D3A96-7E22-5A6A-87D1-B0FB6E3A6C32}", "entry": { "name": "In", @@ -32414,7 +32414,7 @@ ] }, { - "key": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", + "base": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -32422,7 +32422,7 @@ }, "methods": [ { - "key": "IsLoading", + "base": "IsLoading", "context": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "entry": { "name": "In", @@ -32453,7 +32453,7 @@ ] }, { - "key": "GetType", + "base": "GetType", "context": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "entry": { "name": "In", @@ -32484,7 +32484,7 @@ ] }, { - "key": "IsError", + "base": "IsError", "context": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "entry": { "name": "In", @@ -32515,7 +32515,7 @@ ] }, { - "key": "GetHint", + "base": "GetHint", "context": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "entry": { "name": "In", @@ -32546,7 +32546,7 @@ ] }, { - "key": "GetData", + "base": "GetData", "context": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "entry": { "name": "In", @@ -32577,7 +32577,7 @@ ] }, { - "key": "IsReady", + "base": "IsReady", "context": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "entry": { "name": "In", @@ -32608,7 +32608,7 @@ ] }, { - "key": "GetStatus", + "base": "GetStatus", "context": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "entry": { "name": "In", @@ -32639,7 +32639,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "{4BA06517-EDEC-59DC-B5FE-2FDE64BBEF6E}", "entry": { "name": "In", @@ -32672,7 +32672,7 @@ ] }, { - "key": "{549C99B0-35FE-515D-9066-DFA9A1131500}", + "base": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "context": "OnDemandReflected", "variant": "", "details": { @@ -32682,7 +32682,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32719,7 +32719,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32762,7 +32762,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32791,7 +32791,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32822,7 +32822,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32853,7 +32853,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32884,7 +32884,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32915,7 +32915,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32952,7 +32952,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -32989,7 +32989,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -33020,7 +33020,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -33057,7 +33057,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -33088,7 +33088,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -33119,7 +33119,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{549C99B0-35FE-515D-9066-DFA9A1131500}", "entry": { "name": "In", @@ -33150,7 +33150,7 @@ ] }, { - "key": "{D8B65A5B-38FF-4B41-9FA4-FCA080D75625}", + "base": "{D8B65A5B-38FF-4B41-9FA4-FCA080D75625}", "context": "OnDemandReflected", "variant": "", "details": { @@ -33158,7 +33158,7 @@ }, "methods": [ { - "key": "FromString", + "base": "FromString", "context": "{D8B65A5B-38FF-4B41-9FA4-FCA080D75625}", "entry": { "name": "In", @@ -33191,7 +33191,7 @@ ] }, { - "key": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", + "base": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "context": "OnDemandReflected", "variant": "", "details": { @@ -33199,7 +33199,7 @@ }, "methods": [ { - "key": "SetW", + "base": "SetW", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33236,7 +33236,7 @@ ] }, { - "key": "SetX", + "base": "SetX", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33273,7 +33273,7 @@ ] }, { - "key": "IsNormalized", + "base": "IsNormalized", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33310,7 +33310,7 @@ ] }, { - "key": "LengthSquared", + "base": "LengthSquared", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33341,7 +33341,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33378,7 +33378,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33409,7 +33409,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33446,7 +33446,7 @@ ] }, { - "key": "FromValues", + "base": "FromValues", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33495,7 +33495,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33526,7 +33526,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33557,7 +33557,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33594,7 +33594,7 @@ ] }, { - "key": "DirectionTo", + "base": "DirectionTo", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33637,7 +33637,7 @@ ] }, { - "key": "DivideByVector", + "base": "DivideByVector", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33674,7 +33674,7 @@ ] }, { - "key": "LengthReciprocal", + "base": "LengthReciprocal", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33705,7 +33705,7 @@ ] }, { - "key": "SetZ", + "base": "SetZ", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33742,7 +33742,7 @@ ] }, { - "key": "Normalize", + "base": "Normalize", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33773,7 +33773,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33810,7 +33810,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33853,7 +33853,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33890,7 +33890,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33927,7 +33927,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33964,7 +33964,7 @@ ] }, { - "key": "Reciprocal", + "base": "Reciprocal", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -33995,7 +33995,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -34032,7 +34032,7 @@ ] }, { - "key": "Absolute", + "base": "Absolute", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -34063,7 +34063,7 @@ ] }, { - "key": "SetY", + "base": "SetY", "context": "{66027D7A-FCD1-4592-93E5-EB4B7F4BD671}", "entry": { "name": "In", @@ -34102,7 +34102,7 @@ ] }, { - "key": "{36669095-4036-5479-B116-41A32E4E16EA}", + "base": "{36669095-4036-5479-B116-41A32E4E16EA}", "context": "OnDemandReflected", "variant": "", "details": { @@ -34110,7 +34110,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{36669095-4036-5479-B116-41A32E4E16EA}", "entry": { "name": "In", @@ -34141,7 +34141,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{36669095-4036-5479-B116-41A32E4E16EA}", "entry": { "name": "In", @@ -34172,7 +34172,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{36669095-4036-5479-B116-41A32E4E16EA}", "entry": { "name": "In", @@ -34197,7 +34197,7 @@ ] }, { - "key": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", + "base": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "context": "OnDemandReflected", "variant": "", "details": { @@ -34207,7 +34207,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34244,7 +34244,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34287,7 +34287,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34316,7 +34316,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34347,7 +34347,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34378,7 +34378,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34409,7 +34409,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34440,7 +34440,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34477,7 +34477,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34514,7 +34514,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34545,7 +34545,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34582,7 +34582,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34613,7 +34613,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34644,7 +34644,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{87C2A8D1-7954-5AF0-8E1A-B0BB94A6A291}", "entry": { "name": "In", @@ -34675,7 +34675,7 @@ ] }, { - "key": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", + "base": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "context": "OnDemandReflected", "variant": "", "details": { @@ -34685,7 +34685,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34716,7 +34716,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34747,7 +34747,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34784,7 +34784,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34813,7 +34813,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34850,7 +34850,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34881,7 +34881,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34904,7 +34904,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34935,7 +34935,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -34972,7 +34972,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35003,7 +35003,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35032,7 +35032,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35061,7 +35061,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35098,7 +35098,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35135,7 +35135,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35158,7 +35158,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35189,7 +35189,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35226,7 +35226,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35263,7 +35263,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35294,7 +35294,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35325,7 +35325,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35360,7 +35360,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35391,7 +35391,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35434,7 +35434,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35463,7 +35463,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35492,7 +35492,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{F31F64EA-E384-5536-ACD6-8F01849730FC}", "entry": { "name": "In", @@ -35525,7 +35525,7 @@ ] }, { - "key": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", + "base": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -35535,7 +35535,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35566,7 +35566,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35597,7 +35597,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35634,7 +35634,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35663,7 +35663,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35700,7 +35700,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35731,7 +35731,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35754,7 +35754,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35785,7 +35785,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35822,7 +35822,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35853,7 +35853,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35882,7 +35882,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35911,7 +35911,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35948,7 +35948,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -35985,7 +35985,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36008,7 +36008,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36039,7 +36039,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36076,7 +36076,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36113,7 +36113,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36144,7 +36144,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36175,7 +36175,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36210,7 +36210,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36241,7 +36241,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36284,7 +36284,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36313,7 +36313,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36342,7 +36342,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "entry": { "name": "In", @@ -36375,7 +36375,7 @@ ] }, { - "key": "{537AB179-E23C-492D-8EF7-53845A2DB163}", + "base": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "context": "OnDemandReflected", "variant": "", "details": { @@ -36383,7 +36383,7 @@ }, "methods": [ { - "key": "GetRow", + "base": "GetRow", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36420,7 +36420,7 @@ ] }, { - "key": "FromRotationXDegrees", + "base": "FromRotationXDegrees", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36451,7 +36451,7 @@ ] }, { - "key": "FromRotationZDegrees", + "base": "FromRotationZDegrees", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36482,7 +36482,7 @@ ] }, { - "key": "FromRows", + "base": "FromRows", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36531,7 +36531,7 @@ ] }, { - "key": "ToScale", + "base": "ToScale", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36562,7 +36562,7 @@ ] }, { - "key": "FromQuaternion", + "base": "FromQuaternion", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36593,7 +36593,7 @@ ] }, { - "key": "FromScale", + "base": "FromScale", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36624,7 +36624,7 @@ ] }, { - "key": "FromTransform", + "base": "FromTransform", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36655,7 +36655,7 @@ ] }, { - "key": "GetTranslation", + "base": "GetTranslation", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36686,7 +36686,7 @@ ] }, { - "key": "FromQuaternionAndTranslation", + "base": "FromQuaternionAndTranslation", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36723,7 +36723,7 @@ ] }, { - "key": "GetColumn", + "base": "GetColumn", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36760,7 +36760,7 @@ ] }, { - "key": "GetDiagonal", + "base": "GetDiagonal", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36791,7 +36791,7 @@ ] }, { - "key": "Invert", + "base": "Invert", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36822,7 +36822,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36865,7 +36865,7 @@ ] }, { - "key": "FromMatrix3x3", + "base": "FromMatrix3x3", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36896,7 +36896,7 @@ ] }, { - "key": "GetColumns", + "base": "GetColumns", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36927,7 +36927,7 @@ ] }, { - "key": "GetRows", + "base": "GetRows", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36958,7 +36958,7 @@ ] }, { - "key": "MultiplyByMatrix", + "base": "MultiplyByMatrix", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -36995,7 +36995,7 @@ ] }, { - "key": "FromDiagonal", + "base": "FromDiagonal", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37026,7 +37026,7 @@ ] }, { - "key": "FromRotationYDegrees", + "base": "FromRotationYDegrees", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37057,7 +37057,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37100,7 +37100,7 @@ ] }, { - "key": "Transpose", + "base": "Transpose", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37131,7 +37131,7 @@ ] }, { - "key": "FromColumns", + "base": "FromColumns", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37180,7 +37180,7 @@ ] }, { - "key": "FromTranslation", + "base": "FromTranslation", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37211,7 +37211,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37242,7 +37242,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37279,7 +37279,7 @@ ] }, { - "key": "Zero", + "base": "Zero", "context": "{537AB179-E23C-492D-8EF7-53845A2DB163}", "entry": { "name": "In", @@ -37304,7 +37304,7 @@ ] }, { - "key": "{C338C806-EBD9-5471-AB22-66F7584A5890}", + "base": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "context": "OnDemandReflected", "variant": "", "details": { @@ -37314,7 +37314,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37351,7 +37351,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37394,7 +37394,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37423,7 +37423,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37454,7 +37454,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37485,7 +37485,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37516,7 +37516,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37547,7 +37547,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37584,7 +37584,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37621,7 +37621,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37652,7 +37652,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37689,7 +37689,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37720,7 +37720,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37751,7 +37751,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{C338C806-EBD9-5471-AB22-66F7584A5890}", "entry": { "name": "In", @@ -37782,7 +37782,7 @@ ] }, { - "key": "{097C0043-AC31-5230-B07E-330022B002DB}", + "base": "{097C0043-AC31-5230-B07E-330022B002DB}", "context": "OnDemandReflected", "variant": "", "details": { @@ -37792,7 +37792,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -37829,7 +37829,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -37872,7 +37872,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -37901,7 +37901,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -37932,7 +37932,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -37963,7 +37963,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -37994,7 +37994,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -38025,7 +38025,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -38062,7 +38062,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -38099,7 +38099,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -38130,7 +38130,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -38167,7 +38167,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -38198,7 +38198,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -38229,7 +38229,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{097C0043-AC31-5230-B07E-330022B002DB}", "entry": { "name": "In", @@ -38260,7 +38260,7 @@ ] }, { - "key": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", + "base": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "context": "OnDemandReflected", "variant": "", "details": { @@ -38270,7 +38270,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38301,7 +38301,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38332,7 +38332,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38369,7 +38369,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38398,7 +38398,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38435,7 +38435,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38466,7 +38466,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38489,7 +38489,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38520,7 +38520,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38557,7 +38557,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38588,7 +38588,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38617,7 +38617,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38646,7 +38646,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38683,7 +38683,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38720,7 +38720,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38743,7 +38743,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38774,7 +38774,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38811,7 +38811,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38848,7 +38848,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38879,7 +38879,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38910,7 +38910,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38945,7 +38945,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -38976,7 +38976,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -39019,7 +39019,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -39048,7 +39048,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -39077,7 +39077,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{240FCAC2-0B29-5CD9-9AFE-9E7A135428BB}", "entry": { "name": "In", @@ -39110,7 +39110,7 @@ ] }, { - "key": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", + "base": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "context": "OnDemandReflected", "variant": "", "details": { @@ -39118,7 +39118,7 @@ }, "methods": [ { - "key": "RandomPointOnSphere", + "base": "RandomPointOnSphere", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39149,7 +39149,7 @@ ] }, { - "key": "RandomPointInCircle", + "base": "RandomPointInCircle", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39180,7 +39180,7 @@ ] }, { - "key": "RandomPointInSquare", + "base": "RandomPointInSquare", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39211,7 +39211,7 @@ ] }, { - "key": "RandomUnitVector2", + "base": "RandomUnitVector2", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39234,7 +39234,7 @@ ] }, { - "key": "RandomVector2", + "base": "RandomVector2", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39271,7 +39271,7 @@ ] }, { - "key": "RandomPointInCylinder", + "base": "RandomPointInCylinder", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39308,7 +39308,7 @@ ] }, { - "key": "RandomQuaternion", + "base": "RandomQuaternion", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39345,7 +39345,7 @@ ] }, { - "key": "RandomVector4", + "base": "RandomVector4", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39382,7 +39382,7 @@ ] }, { - "key": "RandomPointInBox", + "base": "RandomPointInBox", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39413,7 +39413,7 @@ ] }, { - "key": "RandomPointOnCircle", + "base": "RandomPointOnCircle", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39444,7 +39444,7 @@ ] }, { - "key": "RandomPointInEllipsoid", + "base": "RandomPointInEllipsoid", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39475,7 +39475,7 @@ ] }, { - "key": "RandomInteger", + "base": "RandomInteger", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39512,7 +39512,7 @@ ] }, { - "key": "RandomPointInWedge", + "base": "RandomPointInWedge", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39573,7 +39573,7 @@ ] }, { - "key": "RandomGrayscale", + "base": "RandomGrayscale", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39610,7 +39610,7 @@ ] }, { - "key": "RandomPointInCone", + "base": "RandomPointInCone", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39647,7 +39647,7 @@ ] }, { - "key": "RandomColor", + "base": "RandomColor", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39684,7 +39684,7 @@ ] }, { - "key": "RandomNumber", + "base": "RandomNumber", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39721,7 +39721,7 @@ ] }, { - "key": "RandomPointInSphere", + "base": "RandomPointInSphere", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39752,7 +39752,7 @@ ] }, { - "key": "RandomUnitVector3", + "base": "RandomUnitVector3", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39775,7 +39775,7 @@ ] }, { - "key": "RandomVector3", + "base": "RandomVector3", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39812,7 +39812,7 @@ ] }, { - "key": "RandomPointInArc", + "base": "RandomPointInArc", "context": "{D9DF1385-6C5C-4E41-94CA-8B10E9D8FAAF}", "entry": { "name": "In", @@ -39869,7 +39869,7 @@ ] }, { - "key": "{7352CD6D-91DA-536F-BFCC-BC513FB48B2D}", + "base": "{7352CD6D-91DA-536F-BFCC-BC513FB48B2D}", "context": "OnDemandReflected", "variant": "", "details": { @@ -39877,7 +39877,7 @@ }, "methods": [ { - "key": "GetSize", + "base": "GetSize", "context": "{7352CD6D-91DA-536F-BFCC-BC513FB48B2D}", "entry": { "name": "In", @@ -39900,7 +39900,7 @@ ] }, { - "key": "Get3", + "base": "Get3", "context": "{7352CD6D-91DA-536F-BFCC-BC513FB48B2D}", "entry": { "name": "In", @@ -39931,7 +39931,7 @@ ] }, { - "key": "Get2", + "base": "Get2", "context": "{7352CD6D-91DA-536F-BFCC-BC513FB48B2D}", "entry": { "name": "In", @@ -39962,7 +39962,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{7352CD6D-91DA-536F-BFCC-BC513FB48B2D}", "entry": { "name": "In", @@ -39993,7 +39993,7 @@ ] }, { - "key": "Get0", + "base": "Get0", "context": "{7352CD6D-91DA-536F-BFCC-BC513FB48B2D}", "entry": { "name": "In", @@ -40026,7 +40026,7 @@ ] }, { - "key": "{34333904-F6D2-5090-9D5D-B52D135144EA}", + "base": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "context": "OnDemandReflected", "variant": "", "details": { @@ -40036,7 +40036,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40073,7 +40073,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40116,7 +40116,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40145,7 +40145,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40176,7 +40176,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40207,7 +40207,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40238,7 +40238,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40269,7 +40269,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40306,7 +40306,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40343,7 +40343,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40374,7 +40374,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40411,7 +40411,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40442,7 +40442,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40473,7 +40473,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{34333904-F6D2-5090-9D5D-B52D135144EA}", "entry": { "name": "In", @@ -40504,7 +40504,7 @@ ] }, { - "key": "{E51F56F8-D4E9-5C9F-AE6F-3F9C5D28F4C6}", + "base": "{E51F56F8-D4E9-5C9F-AE6F-3F9C5D28F4C6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -40514,7 +40514,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{E51F56F8-D4E9-5C9F-AE6F-3F9C5D28F4C6}", "entry": { "name": "In", @@ -40547,7 +40547,7 @@ ] }, { - "key": "{CD6328B1-6CC4-54CE-97F4-9D91F5A242F4}", + "base": "{CD6328B1-6CC4-54CE-97F4-9D91F5A242F4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -40555,7 +40555,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{CD6328B1-6CC4-54CE-97F4-9D91F5A242F4}", "entry": { "name": "In", @@ -40586,7 +40586,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{CD6328B1-6CC4-54CE-97F4-9D91F5A242F4}", "entry": { "name": "In", @@ -40617,7 +40617,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{CD6328B1-6CC4-54CE-97F4-9D91F5A242F4}", "entry": { "name": "In", @@ -40642,7 +40642,7 @@ ] }, { - "key": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", + "base": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -40652,7 +40652,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40690,7 +40690,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40734,7 +40734,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40763,7 +40763,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40794,7 +40794,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40825,7 +40825,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40856,7 +40856,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40887,7 +40887,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40925,7 +40925,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40963,7 +40963,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -40994,7 +40994,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -41032,7 +41032,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -41063,7 +41063,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -41094,7 +41094,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{4A885DC2-5C26-52F0-BA83-61EEC0FB5E4E}", "entry": { "name": "In", @@ -41125,7 +41125,7 @@ ] }, { - "key": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", + "base": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "context": "OnDemandReflected", "variant": "", "details": { @@ -41135,7 +41135,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41172,7 +41172,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41215,7 +41215,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41244,7 +41244,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41275,7 +41275,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41306,7 +41306,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41337,7 +41337,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41368,7 +41368,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41405,7 +41405,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41442,7 +41442,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41473,7 +41473,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41510,7 +41510,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41541,7 +41541,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41572,7 +41572,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}", "entry": { "name": "In", @@ -41603,7 +41603,7 @@ ] }, { - "key": "{BC094BE5-5849-5E61-82B9-FB3B434F6BAD}", + "base": "{BC094BE5-5849-5E61-82B9-FB3B434F6BAD}", "context": "OnDemandReflected", "variant": "", "details": { @@ -41611,7 +41611,7 @@ }, "methods": [ { - "key": "GetError", + "base": "GetError", "context": "{BC094BE5-5849-5E61-82B9-FB3B434F6BAD}", "entry": { "name": "In", @@ -41642,7 +41642,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{BC094BE5-5849-5E61-82B9-FB3B434F6BAD}", "entry": { "name": "In", @@ -41673,7 +41673,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{BC094BE5-5849-5E61-82B9-FB3B434F6BAD}", "entry": { "name": "In", @@ -41704,7 +41704,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "context": "{BC094BE5-5849-5E61-82B9-FB3B434F6BAD}", "entry": { "name": "In", @@ -41735,7 +41735,7 @@ ] }, { - "key": "Failure", + "base": "Failure", "context": "{BC094BE5-5849-5E61-82B9-FB3B434F6BAD}", "entry": { "name": "In", @@ -41768,7 +41768,7 @@ ] }, { - "key": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", + "base": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "context": "OnDemandReflected", "variant": "", "details": { @@ -41778,7 +41778,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -41816,7 +41816,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -41861,7 +41861,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -41890,7 +41890,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -41921,7 +41921,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -41952,7 +41952,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -41983,7 +41983,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -42014,7 +42014,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -42052,7 +42052,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -42090,7 +42090,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -42121,7 +42121,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -42160,7 +42160,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -42191,7 +42191,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -42222,7 +42222,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{D33569A9-EFFC-566C-8CCC-74D6E086A1B0}", "entry": { "name": "In", @@ -42253,7 +42253,7 @@ ] }, { - "key": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", + "base": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -42263,7 +42263,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42300,7 +42300,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42343,7 +42343,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42372,7 +42372,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42403,7 +42403,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42434,7 +42434,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42465,7 +42465,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42496,7 +42496,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42533,7 +42533,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42570,7 +42570,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42601,7 +42601,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42638,7 +42638,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42669,7 +42669,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42700,7 +42700,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E32B8C9D-F84C-54FF-91DA-84C99FBBB0B6}", "entry": { "name": "In", @@ -42731,7 +42731,7 @@ ] }, { - "key": "{1F24C807-BE2F-54C7-8F2B-498727236DF5}", + "base": "{1F24C807-BE2F-54C7-8F2B-498727236DF5}", "context": "OnDemandReflected", "variant": "", "details": { @@ -42739,7 +42739,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{1F24C807-BE2F-54C7-8F2B-498727236DF5}", "entry": { "name": "In", @@ -42770,7 +42770,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{1F24C807-BE2F-54C7-8F2B-498727236DF5}", "entry": { "name": "In", @@ -42801,7 +42801,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{1F24C807-BE2F-54C7-8F2B-498727236DF5}", "entry": { "name": "In", @@ -42826,7 +42826,7 @@ ] }, { - "key": "{5B700838-21A2-4579-9303-F4A4822AFEF4}", + "base": "{5B700838-21A2-4579-9303-F4A4822AFEF4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -42834,7 +42834,7 @@ }, "methods": [ { - "key": "ToLower", + "base": "ToLower", "context": "{5B700838-21A2-4579-9303-F4A4822AFEF4}", "entry": { "name": "In", @@ -42865,7 +42865,7 @@ ] }, { - "key": "ToUpper", + "base": "ToUpper", "context": "{5B700838-21A2-4579-9303-F4A4822AFEF4}", "entry": { "name": "In", @@ -42896,7 +42896,7 @@ ] }, { - "key": "Substring", + "base": "Substring", "context": "{5B700838-21A2-4579-9303-F4A4822AFEF4}", "entry": { "name": "In", @@ -42941,7 +42941,7 @@ ] }, { - "key": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", + "base": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "context": "OnDemandReflected", "variant": "", "details": { @@ -42951,7 +42951,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -42988,7 +42988,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43031,7 +43031,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43060,7 +43060,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43091,7 +43091,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43122,7 +43122,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43153,7 +43153,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43184,7 +43184,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43221,7 +43221,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43258,7 +43258,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43289,7 +43289,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43326,7 +43326,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43357,7 +43357,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43388,7 +43388,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{79F6FAE7-FB1D-5030-91D5-766E5861D7D5}", "entry": { "name": "In", @@ -43419,7 +43419,7 @@ ] }, { - "key": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", + "base": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "context": "OnDemandReflected", "variant": "", "details": { @@ -43427,7 +43427,7 @@ }, "methods": [ { - "key": "Overlaps", + "base": "Overlaps", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43464,7 +43464,7 @@ ] }, { - "key": "SurfaceArea", + "base": "SurfaceArea", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43495,7 +43495,7 @@ ] }, { - "key": "ToSphere", + "base": "ToSphere", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43526,7 +43526,7 @@ ] }, { - "key": "FromOBB", + "base": "FromOBB", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43557,7 +43557,7 @@ ] }, { - "key": "Translate", + "base": "Translate", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43594,7 +43594,7 @@ ] }, { - "key": "ContainsVector3", + "base": "ContainsVector3", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43631,7 +43631,7 @@ ] }, { - "key": "Distance", + "base": "Distance", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43668,7 +43668,7 @@ ] }, { - "key": "FromPoint", + "base": "FromPoint", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43699,7 +43699,7 @@ ] }, { - "key": "Null", + "base": "Null", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43722,7 +43722,7 @@ ] }, { - "key": "YExtent", + "base": "YExtent", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43753,7 +43753,7 @@ ] }, { - "key": "Clamp", + "base": "Clamp", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43790,7 +43790,7 @@ ] }, { - "key": "ContainsAABB", + "base": "ContainsAABB", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43827,7 +43827,7 @@ ] }, { - "key": "Expand", + "base": "Expand", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43864,7 +43864,7 @@ ] }, { - "key": "Extents", + "base": "Extents", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43895,7 +43895,7 @@ ] }, { - "key": "FromCenterHalfExtents", + "base": "FromCenterHalfExtents", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43932,7 +43932,7 @@ ] }, { - "key": "GetMin", + "base": "GetMin", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -43963,7 +43963,7 @@ ] }, { - "key": "ApplyTransform", + "base": "ApplyTransform", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44000,7 +44000,7 @@ ] }, { - "key": "Center", + "base": "Center", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44031,7 +44031,7 @@ ] }, { - "key": "FromMinMax", + "base": "FromMinMax", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44068,7 +44068,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44099,7 +44099,7 @@ ] }, { - "key": "IsValid", + "base": "IsValid", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44130,7 +44130,7 @@ ] }, { - "key": "GetMax", + "base": "GetMax", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44161,7 +44161,7 @@ ] }, { - "key": "XExtent", + "base": "XExtent", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44192,7 +44192,7 @@ ] }, { - "key": "AddPoint", + "base": "AddPoint", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44229,7 +44229,7 @@ ] }, { - "key": "AddAABB", + "base": "AddAABB", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44266,7 +44266,7 @@ ] }, { - "key": "FromCenterRadius", + "base": "FromCenterRadius", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44303,7 +44303,7 @@ ] }, { - "key": "ZExtent", + "base": "ZExtent", "context": "{AB0C2753-680E-47AD-8277-66B3AC01C659}", "entry": { "name": "In", @@ -44336,7 +44336,7 @@ ] }, { - "key": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", + "base": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -44344,7 +44344,7 @@ }, "methods": [ { - "key": "Subtract", + "base": "Subtract", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44381,7 +44381,7 @@ ] }, { - "key": "RotationYDegrees", + "base": "RotationYDegrees", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44412,7 +44412,7 @@ ] }, { - "key": "Normalize", + "base": "Normalize", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44443,7 +44443,7 @@ ] }, { - "key": "LengthReciprocal", + "base": "LengthReciprocal", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44474,7 +44474,7 @@ ] }, { - "key": "CreateFromEulerAngles", + "base": "CreateFromEulerAngles", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44517,7 +44517,7 @@ ] }, { - "key": "IsIdentity", + "base": "IsIdentity", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44554,7 +44554,7 @@ ] }, { - "key": "FromTransform", + "base": "FromTransform", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44585,7 +44585,7 @@ ] }, { - "key": "Lerp", + "base": "Lerp", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44628,7 +44628,7 @@ ] }, { - "key": "RotationZDegrees", + "base": "RotationZDegrees", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44659,7 +44659,7 @@ ] }, { - "key": "ConvertTransformToRotation", + "base": "ConvertTransformToRotation", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44690,7 +44690,7 @@ ] }, { - "key": "ShortestArc", + "base": "ShortestArc", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44727,7 +44727,7 @@ ] }, { - "key": "RotationXDegrees", + "base": "RotationXDegrees", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44758,7 +44758,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44795,7 +44795,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44838,7 +44838,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44869,7 +44869,7 @@ ] }, { - "key": "Conjugate", + "base": "Conjugate", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44900,7 +44900,7 @@ ] }, { - "key": "ToAngleDegrees", + "base": "ToAngleDegrees", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44931,7 +44931,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44968,7 +44968,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -44999,7 +44999,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45036,7 +45036,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45073,7 +45073,7 @@ ] }, { - "key": "Slerp", + "base": "Slerp", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45116,7 +45116,7 @@ ] }, { - "key": "InvertFull", + "base": "InvertFull", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45147,7 +45147,7 @@ ] }, { - "key": "FromMatrix4x4", + "base": "FromMatrix4x4", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45178,7 +45178,7 @@ ] }, { - "key": "RotateVector3", + "base": "RotateVector3", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45215,7 +45215,7 @@ ] }, { - "key": "FromMatrix3x3", + "base": "FromMatrix3x3", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45246,7 +45246,7 @@ ] }, { - "key": "Squad", + "base": "Squad", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45301,7 +45301,7 @@ ] }, { - "key": "FromAxisAngleDegrees", + "base": "FromAxisAngleDegrees", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45338,7 +45338,7 @@ ] }, { - "key": "LengthSquared", + "base": "LengthSquared", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45369,7 +45369,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45400,7 +45400,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45437,7 +45437,7 @@ ] }, { - "key": "MultiplyByRotation", + "base": "MultiplyByRotation", "context": "{9BE75E2E-AA07-4767-9BF3-905C289EB38A}", "entry": { "name": "In", @@ -45476,7 +45476,7 @@ ] }, { - "key": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", + "base": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "context": "OnDemandReflected", "variant": "", "details": { @@ -45486,7 +45486,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45517,7 +45517,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45548,7 +45548,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45585,7 +45585,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45614,7 +45614,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45651,7 +45651,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45682,7 +45682,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45705,7 +45705,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45736,7 +45736,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45773,7 +45773,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45804,7 +45804,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45833,7 +45833,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45862,7 +45862,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45899,7 +45899,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45936,7 +45936,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45959,7 +45959,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -45990,7 +45990,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46027,7 +46027,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46064,7 +46064,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46095,7 +46095,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46126,7 +46126,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46161,7 +46161,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46192,7 +46192,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46235,7 +46235,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46264,7 +46264,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46293,7 +46293,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{287CEE87-6FF3-52FC-9D32-38255E2C7FE9}", "entry": { "name": "In", @@ -46326,7 +46326,7 @@ ] }, { - "key": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", + "base": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "context": "OnDemandReflected", "variant": "", "details": { @@ -46336,7 +46336,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46367,7 +46367,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46398,7 +46398,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46435,7 +46435,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46464,7 +46464,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46501,7 +46501,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46532,7 +46532,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46555,7 +46555,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46586,7 +46586,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46623,7 +46623,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46654,7 +46654,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46683,7 +46683,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46712,7 +46712,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46749,7 +46749,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46786,7 +46786,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46809,7 +46809,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46840,7 +46840,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46877,7 +46877,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46914,7 +46914,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46945,7 +46945,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -46976,7 +46976,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -47011,7 +47011,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -47042,7 +47042,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -47085,7 +47085,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -47114,7 +47114,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -47143,7 +47143,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{33D5748B-90F1-569F-8C3F-EF32C9747919}", "entry": { "name": "In", @@ -47176,7 +47176,7 @@ ] }, { - "key": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "base": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "context": "OnDemandReflected", "variant": "", "details": { @@ -47184,7 +47184,7 @@ }, "methods": [ { - "key": "Split", + "base": "Split", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47221,7 +47221,7 @@ ] }, { - "key": "Join", + "base": "Join", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47258,7 +47258,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47295,7 +47295,7 @@ ] }, { - "key": "ToLower", + "base": "ToLower", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47326,7 +47326,7 @@ ] }, { - "key": "Replace", + "base": "Replace", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47369,7 +47369,7 @@ ] }, { - "key": "TrimRight", + "base": "TrimRight", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47400,7 +47400,7 @@ ] }, { - "key": "Equal", + "base": "Equal", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47437,7 +47437,7 @@ ] }, { - "key": "Find", + "base": "Find", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47480,7 +47480,7 @@ ] }, { - "key": "Substring", + "base": "Substring", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47523,7 +47523,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47554,7 +47554,7 @@ ] }, { - "key": "ReplaceByIndex", + "base": "ReplaceByIndex", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47603,7 +47603,7 @@ ] }, { - "key": "c_str", + "base": "c_str", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47634,7 +47634,7 @@ ] }, { - "key": "TrimLeft", + "base": "TrimLeft", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47665,7 +47665,7 @@ ] }, { - "key": "ToUpper", + "base": "ToUpper", "context": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "entry": { "name": "In", @@ -47698,7 +47698,7 @@ ] }, { - "key": "{F0A3166F-115C-5C3E-8D65-28FBA4420028}", + "base": "{F0A3166F-115C-5C3E-8D65-28FBA4420028}", "context": "OnDemandReflected", "variant": "", "details": { @@ -47706,7 +47706,7 @@ }, "methods": [ { - "key": "HasHandlerConnected", + "base": "HasHandlerConnected", "context": "{F0A3166F-115C-5C3E-8D65-28FBA4420028}", "entry": { "name": "In", @@ -47739,7 +47739,7 @@ ] }, { - "key": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", + "base": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "context": "OnDemandReflected", "variant": "", "details": { @@ -47749,7 +47749,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -47780,7 +47780,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -47811,7 +47811,7 @@ ] }, { - "key": "contains", + "base": "contains", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -47848,7 +47848,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -47885,7 +47885,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -47916,7 +47916,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -47945,7 +47945,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -47976,7 +47976,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -48013,7 +48013,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -48050,7 +48050,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -48081,7 +48081,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -48112,7 +48112,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -48143,7 +48143,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{93BBB90E-EBB4-507D-89B6-E4921FE44AFF}", "entry": { "name": "In", @@ -48174,7 +48174,7 @@ ] }, { - "key": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", + "base": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -48184,7 +48184,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48221,7 +48221,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48264,7 +48264,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48293,7 +48293,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48324,7 +48324,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48355,7 +48355,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48386,7 +48386,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48417,7 +48417,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48454,7 +48454,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48491,7 +48491,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48522,7 +48522,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48559,7 +48559,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48590,7 +48590,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48621,7 +48621,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{60CBD665-AE12-50ED-A0CF-D94E77C6292C}", "entry": { "name": "In", @@ -48652,7 +48652,7 @@ ] }, { - "key": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", + "base": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "context": "OnDemandReflected", "variant": "", "details": { @@ -48660,7 +48660,7 @@ }, "methods": [ { - "key": "IsLoading", + "base": "IsLoading", "context": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "entry": { "name": "In", @@ -48691,7 +48691,7 @@ ] }, { - "key": "GetType", + "base": "GetType", "context": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "entry": { "name": "In", @@ -48722,7 +48722,7 @@ ] }, { - "key": "IsError", + "base": "IsError", "context": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "entry": { "name": "In", @@ -48753,7 +48753,7 @@ ] }, { - "key": "GetHint", + "base": "GetHint", "context": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "entry": { "name": "In", @@ -48784,7 +48784,7 @@ ] }, { - "key": "GetData", + "base": "GetData", "context": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "entry": { "name": "In", @@ -48815,7 +48815,7 @@ ] }, { - "key": "IsReady", + "base": "IsReady", "context": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "entry": { "name": "In", @@ -48846,7 +48846,7 @@ ] }, { - "key": "GetStatus", + "base": "GetStatus", "context": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "entry": { "name": "In", @@ -48877,7 +48877,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "{403A7CFE-B218-5D57-8540-BD58E734BCFE}", "entry": { "name": "In", @@ -48910,7 +48910,7 @@ ] }, { - "key": "{2D49E44A-E561-5108-B585-5392D40F9949}", + "base": "{2D49E44A-E561-5108-B585-5392D40F9949}", "context": "OnDemandReflected", "variant": "", "details": { @@ -48920,7 +48920,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -48958,7 +48958,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49002,7 +49002,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49031,7 +49031,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49062,7 +49062,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49093,7 +49093,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49124,7 +49124,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49155,7 +49155,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49193,7 +49193,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49231,7 +49231,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49262,7 +49262,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49300,7 +49300,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49331,7 +49331,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49362,7 +49362,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{2D49E44A-E561-5108-B585-5392D40F9949}", "entry": { "name": "In", @@ -49393,7 +49393,7 @@ ] }, { - "key": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", + "base": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "context": "OnDemandReflected", "variant": "", "details": { @@ -49403,7 +49403,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49434,7 +49434,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49465,7 +49465,7 @@ ] }, { - "key": "contains", + "base": "contains", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49502,7 +49502,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49539,7 +49539,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49570,7 +49570,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49599,7 +49599,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49630,7 +49630,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49667,7 +49667,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49704,7 +49704,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49735,7 +49735,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49766,7 +49766,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49797,7 +49797,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{32EC831B-8AE7-5715-998B-C0C723CB61DA}", "entry": { "name": "In", @@ -49828,7 +49828,7 @@ ] }, { - "key": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", + "base": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "context": "OnDemandReflected", "variant": "", "details": { @@ -49838,7 +49838,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -49875,7 +49875,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -49918,7 +49918,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -49947,7 +49947,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -49978,7 +49978,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50009,7 +50009,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50040,7 +50040,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50071,7 +50071,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50108,7 +50108,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50145,7 +50145,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50176,7 +50176,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50213,7 +50213,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50244,7 +50244,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50275,7 +50275,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{AD341397-E3C6-5C5F-92D6-EEAAA134FF68}", "entry": { "name": "In", @@ -50306,7 +50306,7 @@ ] }, { - "key": "{43147344-44F8-597D-9F8C-B97DFC20C337}", + "base": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "context": "OnDemandReflected", "variant": "", "details": { @@ -50316,7 +50316,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50347,7 +50347,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50378,7 +50378,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50415,7 +50415,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50444,7 +50444,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50481,7 +50481,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50512,7 +50512,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50535,7 +50535,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50566,7 +50566,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50603,7 +50603,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50634,7 +50634,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50663,7 +50663,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50692,7 +50692,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50729,7 +50729,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50766,7 +50766,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50789,7 +50789,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50820,7 +50820,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50857,7 +50857,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50894,7 +50894,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50925,7 +50925,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50956,7 +50956,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -50991,7 +50991,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -51022,7 +51022,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -51065,7 +51065,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -51094,7 +51094,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -51123,7 +51123,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{43147344-44F8-597D-9F8C-B97DFC20C337}", "entry": { "name": "In", @@ -51156,7 +51156,7 @@ ] }, { - "key": "{5BAFAD11-D6AF-5946-B09B-6E0B72E1209C}", + "base": "{5BAFAD11-D6AF-5946-B09B-6E0B72E1209C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -51164,7 +51164,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{5BAFAD11-D6AF-5946-B09B-6E0B72E1209C}", "entry": { "name": "In", @@ -51195,7 +51195,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{5BAFAD11-D6AF-5946-B09B-6E0B72E1209C}", "entry": { "name": "In", @@ -51226,7 +51226,7 @@ ] }, { - "key": "Get2", + "base": "Get2", "context": "{5BAFAD11-D6AF-5946-B09B-6E0B72E1209C}", "entry": { "name": "In", @@ -51257,7 +51257,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{5BAFAD11-D6AF-5946-B09B-6E0B72E1209C}", "entry": { "name": "In", @@ -51282,7 +51282,7 @@ ] }, { - "key": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", + "base": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -51290,7 +51290,7 @@ }, "methods": [ { - "key": "DirectionTo", + "base": "DirectionTo", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51333,7 +51333,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51370,7 +51370,7 @@ ] }, { - "key": "Project", + "base": "Project", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51407,7 +51407,7 @@ ] }, { - "key": "Distance", + "base": "Distance", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51444,7 +51444,7 @@ ] }, { - "key": "FromValues", + "base": "FromValues", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51481,7 +51481,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51518,7 +51518,7 @@ ] }, { - "key": "Angle", + "base": "Angle", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51549,7 +51549,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51580,7 +51580,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51617,7 +51617,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51654,7 +51654,7 @@ ] }, { - "key": "Clamp", + "base": "Clamp", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51697,7 +51697,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51734,7 +51734,7 @@ ] }, { - "key": "Slerp", + "base": "Slerp", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51777,7 +51777,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51814,7 +51814,7 @@ ] }, { - "key": "SetY", + "base": "SetY", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51851,7 +51851,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51894,7 +51894,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51931,7 +51931,7 @@ ] }, { - "key": "IsNormalized", + "base": "IsNormalized", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51968,7 +51968,7 @@ ] }, { - "key": "LengthSquared", + "base": "LengthSquared", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -51999,7 +51999,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52030,7 +52030,7 @@ ] }, { - "key": "ToPerpendicular", + "base": "ToPerpendicular", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52061,7 +52061,7 @@ ] }, { - "key": "Normalize", + "base": "Normalize", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52092,7 +52092,7 @@ ] }, { - "key": "Max", + "base": "Max", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52129,7 +52129,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52166,7 +52166,7 @@ ] }, { - "key": "Absolute", + "base": "Absolute", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52197,7 +52197,7 @@ ] }, { - "key": "SetX", + "base": "SetX", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52234,7 +52234,7 @@ ] }, { - "key": "Min", + "base": "Min", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52271,7 +52271,7 @@ ] }, { - "key": "DivideByVector", + "base": "DivideByVector", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52308,7 +52308,7 @@ ] }, { - "key": "DistanceSquared", + "base": "DistanceSquared", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52345,7 +52345,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52376,7 +52376,7 @@ ] }, { - "key": "Lerp", + "base": "Lerp", "context": "{FD1BFADF-BA1F-4AFC-819B-ABA1F22AE6E6}", "entry": { "name": "In", @@ -52421,7 +52421,7 @@ ] }, { - "key": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", + "base": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -52431,7 +52431,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52469,7 +52469,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52513,7 +52513,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52542,7 +52542,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52573,7 +52573,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52604,7 +52604,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52635,7 +52635,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52666,7 +52666,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52704,7 +52704,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52742,7 +52742,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52773,7 +52773,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52811,7 +52811,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52842,7 +52842,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52873,7 +52873,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{544C0867-6EF4-593D-97BD-A51F6EB8164E}", "entry": { "name": "In", @@ -52904,7 +52904,7 @@ ] }, { - "key": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", + "base": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -52914,7 +52914,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -52951,7 +52951,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -52994,7 +52994,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53023,7 +53023,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53054,7 +53054,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53085,7 +53085,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53116,7 +53116,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53147,7 +53147,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53184,7 +53184,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53221,7 +53221,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53252,7 +53252,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53289,7 +53289,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53320,7 +53320,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53351,7 +53351,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{873120A5-6F9A-543A-BE16-6ED846A8655C}", "entry": { "name": "In", @@ -53382,7 +53382,7 @@ ] }, { - "key": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", + "base": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "context": "OnDemandReflected", "variant": "", "details": { @@ -53392,7 +53392,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53429,7 +53429,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53472,7 +53472,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53501,7 +53501,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53532,7 +53532,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53563,7 +53563,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53594,7 +53594,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53625,7 +53625,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53662,7 +53662,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53699,7 +53699,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53730,7 +53730,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53767,7 +53767,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53798,7 +53798,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53829,7 +53829,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{D653CC1C-3625-5EE4-9F96-A1D20E576E8D}", "entry": { "name": "In", @@ -53860,7 +53860,7 @@ ] }, { - "key": "{F429F985-AF00-529B-8449-16E56694E5F9}", + "base": "{F429F985-AF00-529B-8449-16E56694E5F9}", "context": "OnDemandReflected", "variant": "", "details": { @@ -53868,7 +53868,7 @@ }, "methods": [ { - "key": "HasHandlerConnected", + "base": "HasHandlerConnected", "context": "{F429F985-AF00-529B-8449-16E56694E5F9}", "entry": { "name": "In", @@ -53901,7 +53901,7 @@ ] }, { - "key": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", + "base": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "context": "OnDemandReflected", "variant": "", "details": { @@ -53911,7 +53911,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -53948,7 +53948,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -53991,7 +53991,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54020,7 +54020,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54051,7 +54051,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54082,7 +54082,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54113,7 +54113,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54144,7 +54144,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54181,7 +54181,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54218,7 +54218,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54249,7 +54249,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54286,7 +54286,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54317,7 +54317,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54348,7 +54348,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{C408B3CC-9C42-5306-93BC-FAB670B2F860}", "entry": { "name": "In", @@ -54379,7 +54379,7 @@ ] }, { - "key": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}", + "base": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}", "context": "OnDemandReflected", "variant": "", "details": { @@ -54387,7 +54387,7 @@ }, "methods": [ { - "key": "HasHandlerConnected", + "base": "HasHandlerConnected", "context": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}", "entry": { "name": "In", @@ -54420,7 +54420,7 @@ ] }, { - "key": "{9A6CD726-97FC-54C4-A34B-5996F6948697}", + "base": "{9A6CD726-97FC-54C4-A34B-5996F6948697}", "context": "OnDemandReflected", "variant": "", "details": { @@ -54430,7 +54430,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{9A6CD726-97FC-54C4-A34B-5996F6948697}", "entry": { "name": "In", @@ -54463,7 +54463,7 @@ ] }, { - "key": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", + "base": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "context": "OnDemandReflected", "variant": "", "details": { @@ -54473,7 +54473,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54504,7 +54504,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54535,7 +54535,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54572,7 +54572,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54601,7 +54601,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54638,7 +54638,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54669,7 +54669,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54692,7 +54692,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54723,7 +54723,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54760,7 +54760,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54791,7 +54791,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54820,7 +54820,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54849,7 +54849,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54886,7 +54886,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54923,7 +54923,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54946,7 +54946,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -54977,7 +54977,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55014,7 +55014,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55051,7 +55051,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55082,7 +55082,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55113,7 +55113,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55148,7 +55148,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55179,7 +55179,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55222,7 +55222,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55251,7 +55251,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55280,7 +55280,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{DCAD95EA-9447-5B13-AACC-6C7223E1C04D}", "entry": { "name": "In", @@ -55313,7 +55313,7 @@ ] }, { - "key": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", + "base": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "context": "OnDemandReflected", "variant": "", "details": { @@ -55323,7 +55323,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55354,7 +55354,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55385,7 +55385,7 @@ ] }, { - "key": "contains", + "base": "contains", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55422,7 +55422,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55459,7 +55459,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55490,7 +55490,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55519,7 +55519,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55550,7 +55550,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55587,7 +55587,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55624,7 +55624,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55655,7 +55655,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55686,7 +55686,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55717,7 +55717,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{0D5E2C44-B2DE-57D6-B4B9-3F37C5D9B245}", "entry": { "name": "In", @@ -55748,7 +55748,7 @@ ] }, { - "key": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", + "base": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "context": "OnDemandReflected", "variant": "", "details": { @@ -55758,7 +55758,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -55795,7 +55795,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -55838,7 +55838,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -55867,7 +55867,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -55898,7 +55898,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -55929,7 +55929,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -55960,7 +55960,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -55991,7 +55991,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -56028,7 +56028,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -56065,7 +56065,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -56096,7 +56096,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -56133,7 +56133,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -56164,7 +56164,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -56195,7 +56195,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{F0D71473-2358-53A0-A1B3-16A564B9A0BD}", "entry": { "name": "In", @@ -56226,7 +56226,7 @@ ] }, { - "key": "{84290CFC-1335-5341-AD8B-0A3FE9FE46D0}", + "base": "{84290CFC-1335-5341-AD8B-0A3FE9FE46D0}", "context": "OnDemandReflected", "variant": "", "details": { @@ -56234,7 +56234,7 @@ }, "methods": [ { - "key": "HasHandlerConnected", + "base": "HasHandlerConnected", "context": "{84290CFC-1335-5341-AD8B-0A3FE9FE46D0}", "entry": { "name": "In", @@ -56267,7 +56267,7 @@ ] }, { - "key": "{444B2C18-8D7E-5B43-9524-0C9F6C351542}", + "base": "{444B2C18-8D7E-5B43-9524-0C9F6C351542}", "context": "OnDemandReflected", "variant": "", "details": { @@ -56277,7 +56277,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{444B2C18-8D7E-5B43-9524-0C9F6C351542}", "entry": { "name": "In", @@ -56310,7 +56310,7 @@ ] }, { - "key": "{56026B1A-B142-5C80-B6F4-A0827B393370}", + "base": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "context": "OnDemandReflected", "variant": "", "details": { @@ -56320,7 +56320,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56357,7 +56357,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56400,7 +56400,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56429,7 +56429,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56460,7 +56460,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56491,7 +56491,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56522,7 +56522,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56553,7 +56553,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56590,7 +56590,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56627,7 +56627,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56658,7 +56658,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56695,7 +56695,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56726,7 +56726,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56757,7 +56757,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{56026B1A-B142-5C80-B6F4-A0827B393370}", "entry": { "name": "In", @@ -56788,7 +56788,7 @@ ] }, { - "key": "{B51CFD94-318D-5E30-BE18-6ACC6CFCC2EC}", + "base": "{B51CFD94-318D-5E30-BE18-6ACC6CFCC2EC}", "context": "OnDemandReflected", "variant": "", "details": { @@ -56798,7 +56798,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{B51CFD94-318D-5E30-BE18-6ACC6CFCC2EC}", "entry": { "name": "In", @@ -56831,7 +56831,7 @@ ] }, { - "key": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", + "base": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "context": "OnDemandReflected", "variant": "", "details": { @@ -56841,7 +56841,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -56872,7 +56872,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -56903,7 +56903,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -56940,7 +56940,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -56969,7 +56969,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57006,7 +57006,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57037,7 +57037,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57060,7 +57060,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57091,7 +57091,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57128,7 +57128,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57159,7 +57159,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57188,7 +57188,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57217,7 +57217,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57254,7 +57254,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57291,7 +57291,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57314,7 +57314,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57345,7 +57345,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57382,7 +57382,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57419,7 +57419,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57450,7 +57450,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57481,7 +57481,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57516,7 +57516,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57547,7 +57547,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57590,7 +57590,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57619,7 +57619,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57648,7 +57648,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{D2AE76E7-D7AC-58C9-82C3-EE5F0BDCFACD}", "entry": { "name": "In", @@ -57681,7 +57681,7 @@ ] }, { - "key": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", + "base": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -57691,7 +57691,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57728,7 +57728,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57771,7 +57771,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57800,7 +57800,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57831,7 +57831,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57862,7 +57862,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57893,7 +57893,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57924,7 +57924,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57961,7 +57961,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -57998,7 +57998,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -58029,7 +58029,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -58066,7 +58066,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -58097,7 +58097,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -58128,7 +58128,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{9F35DB06-62AD-55E0-9CDD-DF452612430C}", "entry": { "name": "In", @@ -58159,7 +58159,7 @@ ] }, { - "key": "{E9F4752C-BFCD-5F51-AA18-F47BDF358BFD}", + "base": "{E9F4752C-BFCD-5F51-AA18-F47BDF358BFD}", "context": "OnDemandReflected", "variant": "", "details": { @@ -58167,7 +58167,7 @@ }, "methods": [ { - "key": "GetError", + "base": "GetError", "context": "{E9F4752C-BFCD-5F51-AA18-F47BDF358BFD}", "entry": { "name": "In", @@ -58198,7 +58198,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{E9F4752C-BFCD-5F51-AA18-F47BDF358BFD}", "entry": { "name": "In", @@ -58229,7 +58229,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{E9F4752C-BFCD-5F51-AA18-F47BDF358BFD}", "entry": { "name": "In", @@ -58260,7 +58260,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "context": "{E9F4752C-BFCD-5F51-AA18-F47BDF358BFD}", "entry": { "name": "In", @@ -58291,7 +58291,7 @@ ] }, { - "key": "Failure", + "base": "Failure", "context": "{E9F4752C-BFCD-5F51-AA18-F47BDF358BFD}", "entry": { "name": "In", @@ -58324,7 +58324,7 @@ ] }, { - "key": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", + "base": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "context": "OnDemandReflected", "variant": "", "details": { @@ -58334,7 +58334,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58365,7 +58365,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58396,7 +58396,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58433,7 +58433,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58462,7 +58462,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58499,7 +58499,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58530,7 +58530,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58553,7 +58553,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58584,7 +58584,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58621,7 +58621,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58652,7 +58652,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58681,7 +58681,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58710,7 +58710,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58747,7 +58747,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58784,7 +58784,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58807,7 +58807,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58838,7 +58838,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58875,7 +58875,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58912,7 +58912,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58943,7 +58943,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -58974,7 +58974,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -59009,7 +59009,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -59040,7 +59040,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -59083,7 +59083,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -59112,7 +59112,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -59141,7 +59141,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}", "entry": { "name": "In", @@ -59174,7 +59174,7 @@ ] }, { - "key": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", + "base": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "context": "OnDemandReflected", "variant": "", "details": { @@ -59184,7 +59184,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59221,7 +59221,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59264,7 +59264,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59293,7 +59293,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59324,7 +59324,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59355,7 +59355,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59386,7 +59386,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59417,7 +59417,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59454,7 +59454,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59491,7 +59491,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59522,7 +59522,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59559,7 +59559,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59590,7 +59590,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59621,7 +59621,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{4039D1BB-DA00-5C6B-AC80-6B892003D35F}", "entry": { "name": "In", @@ -59652,7 +59652,7 @@ ] }, { - "key": "{033C4408-7E4A-5382-81D8-102FC8336005}", + "base": "{033C4408-7E4A-5382-81D8-102FC8336005}", "context": "OnDemandReflected", "variant": "", "details": { @@ -59662,7 +59662,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59700,7 +59700,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59744,7 +59744,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59773,7 +59773,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59804,7 +59804,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59835,7 +59835,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59866,7 +59866,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59897,7 +59897,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59935,7 +59935,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -59973,7 +59973,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -60004,7 +60004,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -60042,7 +60042,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -60073,7 +60073,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -60104,7 +60104,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{033C4408-7E4A-5382-81D8-102FC8336005}", "entry": { "name": "In", @@ -60135,7 +60135,7 @@ ] }, { - "key": "{3750867E-BD2D-52A2-B93B-51032E86C4D4}", + "base": "{3750867E-BD2D-52A2-B93B-51032E86C4D4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -60143,7 +60143,7 @@ }, "methods": [ { - "key": "GetSize", + "base": "GetSize", "context": "{3750867E-BD2D-52A2-B93B-51032E86C4D4}", "entry": { "name": "In", @@ -60166,7 +60166,7 @@ ] }, { - "key": "Get3", + "base": "Get3", "context": "{3750867E-BD2D-52A2-B93B-51032E86C4D4}", "entry": { "name": "In", @@ -60197,7 +60197,7 @@ ] }, { - "key": "Get2", + "base": "Get2", "context": "{3750867E-BD2D-52A2-B93B-51032E86C4D4}", "entry": { "name": "In", @@ -60228,7 +60228,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{3750867E-BD2D-52A2-B93B-51032E86C4D4}", "entry": { "name": "In", @@ -60259,7 +60259,7 @@ ] }, { - "key": "Get0", + "base": "Get0", "context": "{3750867E-BD2D-52A2-B93B-51032E86C4D4}", "entry": { "name": "In", @@ -60292,7 +60292,7 @@ ] }, { - "key": "{C9789111-6A18-4C6E-81A7-87D057D59D2C}", + "base": "{C9789111-6A18-4C6E-81A7-87D057D59D2C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -60300,7 +60300,7 @@ }, "methods": [ { - "key": "ToString", + "base": "ToString", "context": "{C9789111-6A18-4C6E-81A7-87D057D59D2C}", "entry": { "name": "In", @@ -60332,7 +60332,7 @@ ] }, { - "key": "IsValid", + "base": "IsValid", "context": "{C9789111-6A18-4C6E-81A7-87D057D59D2C}", "entry": { "name": "In", @@ -60364,7 +60364,7 @@ ] }, { - "key": "GetEntityForward", + "base": "GetEntityForward", "context": "{C9789111-6A18-4C6E-81A7-87D057D59D2C}", "entry": { "name": "In", @@ -60402,7 +60402,7 @@ ] }, { - "key": "IsActive", + "base": "IsActive", "context": "{C9789111-6A18-4C6E-81A7-87D057D59D2C}", "entry": { "name": "In", @@ -60434,7 +60434,7 @@ ] }, { - "key": "GetEntityRight", + "base": "GetEntityRight", "context": "{C9789111-6A18-4C6E-81A7-87D057D59D2C}", "entry": { "name": "In", @@ -60472,7 +60472,7 @@ ] }, { - "key": "GetEntityUp", + "base": "GetEntityUp", "context": "{C9789111-6A18-4C6E-81A7-87D057D59D2C}", "entry": { "name": "In", @@ -60512,7 +60512,7 @@ ] }, { - "key": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", + "base": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "context": "OnDemandReflected", "variant": "", "details": { @@ -60522,7 +60522,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60559,7 +60559,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60602,7 +60602,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60631,7 +60631,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60662,7 +60662,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60693,7 +60693,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60724,7 +60724,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60755,7 +60755,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60792,7 +60792,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60829,7 +60829,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60860,7 +60860,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60897,7 +60897,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60928,7 +60928,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60959,7 +60959,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{CC6E9A58-8CB0-540D-A06D-4337A8C4FE91}", "entry": { "name": "In", @@ -60990,7 +60990,7 @@ ] }, { - "key": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", + "base": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "context": "OnDemandReflected", "variant": "", "details": { @@ -61000,7 +61000,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61037,7 +61037,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61080,7 +61080,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61109,7 +61109,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61140,7 +61140,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61171,7 +61171,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61202,7 +61202,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61233,7 +61233,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61270,7 +61270,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61307,7 +61307,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61338,7 +61338,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61375,7 +61375,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61406,7 +61406,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61437,7 +61437,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{3E047B85-9AA0-5540-9744-373DBD4AD4CA}", "entry": { "name": "In", @@ -61468,7 +61468,7 @@ ] }, { - "key": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", + "base": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "context": "OnDemandReflected", "variant": "", "details": { @@ -61478,7 +61478,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61515,7 +61515,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61558,7 +61558,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61587,7 +61587,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61618,7 +61618,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61649,7 +61649,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61680,7 +61680,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61711,7 +61711,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61748,7 +61748,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61785,7 +61785,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61816,7 +61816,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61853,7 +61853,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61884,7 +61884,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61915,7 +61915,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{A2ED5341-A86D-5564-99AF-8BCDED62C751}", "entry": { "name": "In", @@ -61946,7 +61946,7 @@ ] }, { - "key": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", + "base": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "context": "OnDemandReflected", "variant": "", "details": { @@ -61956,7 +61956,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -61993,7 +61993,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62036,7 +62036,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62065,7 +62065,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62096,7 +62096,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62127,7 +62127,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62158,7 +62158,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62189,7 +62189,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62226,7 +62226,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62263,7 +62263,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62294,7 +62294,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62331,7 +62331,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62362,7 +62362,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62393,7 +62393,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{EB781DCB-CD92-51EF-B490-3628FE48E880}", "entry": { "name": "In", @@ -62424,7 +62424,7 @@ ] }, { - "key": "{6ACECB77-D489-52CF-8473-9116466ABC59}", + "base": "{6ACECB77-D489-52CF-8473-9116466ABC59}", "context": "OnDemandReflected", "variant": "", "details": { @@ -62432,7 +62432,7 @@ }, "methods": [ { - "key": "HasHandlerConnected", + "base": "HasHandlerConnected", "context": "{6ACECB77-D489-52CF-8473-9116466ABC59}", "entry": { "name": "In", @@ -62465,7 +62465,7 @@ ] }, { - "key": "{858A22B8-1B5E-5016-BF33-B2469DD9CAD3}", + "base": "{858A22B8-1B5E-5016-BF33-B2469DD9CAD3}", "context": "OnDemandReflected", "variant": "", "details": { @@ -62473,7 +62473,7 @@ }, "methods": [ { - "key": "has_value", + "base": "has_value", "context": "{858A22B8-1B5E-5016-BF33-B2469DD9CAD3}", "entry": { "name": "In", @@ -62504,7 +62504,7 @@ ] }, { - "key": "__bool__", + "base": "__bool__", "context": "{858A22B8-1B5E-5016-BF33-B2469DD9CAD3}", "entry": { "name": "In", @@ -62535,7 +62535,7 @@ ] }, { - "key": "value", + "base": "value", "context": "{858A22B8-1B5E-5016-BF33-B2469DD9CAD3}", "entry": { "name": "In", @@ -62566,7 +62566,7 @@ ] }, { - "key": "value_or", + "base": "value_or", "context": "{858A22B8-1B5E-5016-BF33-B2469DD9CAD3}", "entry": { "name": "In", @@ -62605,7 +62605,7 @@ ] }, { - "key": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", + "base": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "context": "OnDemandReflected", "variant": "", "details": { @@ -62615,7 +62615,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62652,7 +62652,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62695,7 +62695,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62724,7 +62724,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62755,7 +62755,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62786,7 +62786,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62817,7 +62817,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62848,7 +62848,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62885,7 +62885,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62922,7 +62922,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62953,7 +62953,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -62990,7 +62990,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -63021,7 +63021,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -63052,7 +63052,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{C985C516-C64B-5821-9A82-06DBAE6734CA}", "entry": { "name": "In", @@ -63083,7 +63083,7 @@ ] }, { - "key": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", + "base": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "context": "OnDemandReflected", "variant": "", "details": { @@ -63093,7 +63093,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63130,7 +63130,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63173,7 +63173,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63202,7 +63202,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63233,7 +63233,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63264,7 +63264,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63295,7 +63295,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63326,7 +63326,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63363,7 +63363,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63400,7 +63400,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63431,7 +63431,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63468,7 +63468,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63499,7 +63499,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63530,7 +63530,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{6BBF646F-D689-5D24-9596-05ED6A785D2F}", "entry": { "name": "In", @@ -63561,7 +63561,7 @@ ] }, { - "key": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", + "base": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "context": "OnDemandReflected", "variant": "", "details": { @@ -63571,7 +63571,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63602,7 +63602,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63633,7 +63633,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63670,7 +63670,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63699,7 +63699,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63736,7 +63736,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63767,7 +63767,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63790,7 +63790,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63821,7 +63821,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63858,7 +63858,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63889,7 +63889,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63918,7 +63918,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63947,7 +63947,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -63984,7 +63984,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64021,7 +64021,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64044,7 +64044,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64075,7 +64075,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64112,7 +64112,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64149,7 +64149,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64180,7 +64180,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64211,7 +64211,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64246,7 +64246,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64277,7 +64277,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64320,7 +64320,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64349,7 +64349,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64378,7 +64378,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{A16BD88A-8457-5717-B84E-977B1D176AE2}", "entry": { "name": "In", @@ -64411,7 +64411,7 @@ ] }, { - "key": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", + "base": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -64419,7 +64419,7 @@ }, "methods": [ { - "key": "IsLoading", + "base": "IsLoading", "context": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "entry": { "name": "In", @@ -64450,7 +64450,7 @@ ] }, { - "key": "GetType", + "base": "GetType", "context": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "entry": { "name": "In", @@ -64481,7 +64481,7 @@ ] }, { - "key": "IsError", + "base": "IsError", "context": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "entry": { "name": "In", @@ -64512,7 +64512,7 @@ ] }, { - "key": "GetHint", + "base": "GetHint", "context": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "entry": { "name": "In", @@ -64543,7 +64543,7 @@ ] }, { - "key": "GetData", + "base": "GetData", "context": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "entry": { "name": "In", @@ -64574,7 +64574,7 @@ ] }, { - "key": "IsReady", + "base": "IsReady", "context": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "entry": { "name": "In", @@ -64605,7 +64605,7 @@ ] }, { - "key": "GetStatus", + "base": "GetStatus", "context": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "entry": { "name": "In", @@ -64636,7 +64636,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "{834DC049-5EC3-5C29-B621-5F0046864DC4}", "entry": { "name": "In", @@ -64669,7 +64669,7 @@ ] }, { - "key": "{B57176AF-63A1-5531-B77E-BD7337E66127}", + "base": "{B57176AF-63A1-5531-B77E-BD7337E66127}", "context": "OnDemandReflected", "variant": "", "details": { @@ -64677,7 +64677,7 @@ }, "methods": [ { - "key": "GetError", + "base": "GetError", "context": "{B57176AF-63A1-5531-B77E-BD7337E66127}", "entry": { "name": "In", @@ -64708,7 +64708,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{B57176AF-63A1-5531-B77E-BD7337E66127}", "entry": { "name": "In", @@ -64739,7 +64739,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{B57176AF-63A1-5531-B77E-BD7337E66127}", "entry": { "name": "In", @@ -64770,7 +64770,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "context": "{B57176AF-63A1-5531-B77E-BD7337E66127}", "entry": { "name": "In", @@ -64801,7 +64801,7 @@ ] }, { - "key": "Failure", + "base": "Failure", "context": "{B57176AF-63A1-5531-B77E-BD7337E66127}", "entry": { "name": "In", @@ -64834,7 +64834,7 @@ ] }, { - "key": "{4C19E257-F929-524E-80E3-C910C5F3E2D9}", + "base": "{4C19E257-F929-524E-80E3-C910C5F3E2D9}", "context": "OnDemandReflected", "variant": "", "details": { @@ -64842,7 +64842,7 @@ }, "methods": [ { - "key": "HasHandlerConnected", + "base": "HasHandlerConnected", "context": "{4C19E257-F929-524E-80E3-C910C5F3E2D9}", "entry": { "name": "In", @@ -64875,7 +64875,7 @@ ] }, { - "key": "{BE75E564-1859-566D-821F-3343675C4977}", + "base": "{BE75E564-1859-566D-821F-3343675C4977}", "context": "OnDemandReflected", "variant": "", "details": { @@ -64885,7 +64885,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -64922,7 +64922,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -64965,7 +64965,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -64994,7 +64994,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65025,7 +65025,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65056,7 +65056,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65087,7 +65087,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65118,7 +65118,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65155,7 +65155,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65192,7 +65192,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65223,7 +65223,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65260,7 +65260,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65291,7 +65291,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65322,7 +65322,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{BE75E564-1859-566D-821F-3343675C4977}", "entry": { "name": "In", @@ -65353,7 +65353,7 @@ ] }, { - "key": "{93942742-473F-5EE3-8420-D8F22C612221}", + "base": "{93942742-473F-5EE3-8420-D8F22C612221}", "context": "OnDemandReflected", "variant": "", "details": { @@ -65361,7 +65361,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{93942742-473F-5EE3-8420-D8F22C612221}", "entry": { "name": "In", @@ -65392,7 +65392,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{93942742-473F-5EE3-8420-D8F22C612221}", "entry": { "name": "In", @@ -65423,7 +65423,7 @@ ] }, { - "key": "Get2", + "base": "Get2", "context": "{93942742-473F-5EE3-8420-D8F22C612221}", "entry": { "name": "In", @@ -65454,7 +65454,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{93942742-473F-5EE3-8420-D8F22C612221}", "entry": { "name": "In", @@ -65479,7 +65479,7 @@ ] }, { - "key": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", + "base": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "context": "OnDemandReflected", "variant": "", "details": { @@ -65489,7 +65489,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65526,7 +65526,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65570,7 +65570,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65599,7 +65599,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65630,7 +65630,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65661,7 +65661,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65692,7 +65692,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65723,7 +65723,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65760,7 +65760,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65797,7 +65797,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65828,7 +65828,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65866,7 +65866,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65897,7 +65897,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65928,7 +65928,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{4A5210BF-A837-53B7-BB8C-1E74AF26D98B}", "entry": { "name": "In", @@ -65959,7 +65959,7 @@ ] }, { - "key": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", + "base": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "context": "OnDemandReflected", "variant": "", "details": { @@ -65967,7 +65967,7 @@ }, "methods": [ { - "key": "IsLoading", + "base": "IsLoading", "context": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "entry": { "name": "In", @@ -65998,7 +65998,7 @@ ] }, { - "key": "GetType", + "base": "GetType", "context": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "entry": { "name": "In", @@ -66029,7 +66029,7 @@ ] }, { - "key": "IsError", + "base": "IsError", "context": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "entry": { "name": "In", @@ -66060,7 +66060,7 @@ ] }, { - "key": "GetHint", + "base": "GetHint", "context": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "entry": { "name": "In", @@ -66091,7 +66091,7 @@ ] }, { - "key": "GetData", + "base": "GetData", "context": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "entry": { "name": "In", @@ -66122,7 +66122,7 @@ ] }, { - "key": "IsReady", + "base": "IsReady", "context": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "entry": { "name": "In", @@ -66153,7 +66153,7 @@ ] }, { - "key": "GetStatus", + "base": "GetStatus", "context": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "entry": { "name": "In", @@ -66184,7 +66184,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "{895CEA57-551B-5B79-A32B-B2DA0A912C87}", "entry": { "name": "In", @@ -66217,7 +66217,7 @@ ] }, { - "key": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", + "base": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "context": "OnDemandReflected", "variant": "", "details": { @@ -66227,7 +66227,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66264,7 +66264,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66307,7 +66307,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66336,7 +66336,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66367,7 +66367,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66398,7 +66398,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66429,7 +66429,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66460,7 +66460,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66497,7 +66497,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66534,7 +66534,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66565,7 +66565,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66602,7 +66602,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66633,7 +66633,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66664,7 +66664,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}", "entry": { "name": "In", @@ -66695,7 +66695,7 @@ ] }, { - "key": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", + "base": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -66705,7 +66705,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -66743,7 +66743,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -66787,7 +66787,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -66816,7 +66816,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -66847,7 +66847,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -66878,7 +66878,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -66909,7 +66909,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -66940,7 +66940,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -66978,7 +66978,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -67016,7 +67016,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -67047,7 +67047,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -67085,7 +67085,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -67116,7 +67116,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -67147,7 +67147,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{FA8DBA11-EE9F-503E-99EA-C12757E5DCF4}", "entry": { "name": "In", @@ -67178,7 +67178,7 @@ ] }, { - "key": "{E9D62A8D-0092-5956-9DF4-22A087322834}", + "base": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "context": "OnDemandReflected", "variant": "", "details": { @@ -67188,7 +67188,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67225,7 +67225,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67268,7 +67268,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67297,7 +67297,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67328,7 +67328,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67359,7 +67359,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67390,7 +67390,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67421,7 +67421,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67458,7 +67458,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67495,7 +67495,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67526,7 +67526,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67563,7 +67563,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67594,7 +67594,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67625,7 +67625,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E9D62A8D-0092-5956-9DF4-22A087322834}", "entry": { "name": "In", @@ -67656,7 +67656,7 @@ ] }, { - "key": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", + "base": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "context": "OnDemandReflected", "variant": "", "details": { @@ -67664,7 +67664,7 @@ }, "methods": [ { - "key": "IsLoading", + "base": "IsLoading", "context": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "entry": { "name": "In", @@ -67695,7 +67695,7 @@ ] }, { - "key": "GetType", + "base": "GetType", "context": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "entry": { "name": "In", @@ -67726,7 +67726,7 @@ ] }, { - "key": "IsError", + "base": "IsError", "context": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "entry": { "name": "In", @@ -67757,7 +67757,7 @@ ] }, { - "key": "GetHint", + "base": "GetHint", "context": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "entry": { "name": "In", @@ -67788,7 +67788,7 @@ ] }, { - "key": "GetData", + "base": "GetData", "context": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "entry": { "name": "In", @@ -67819,7 +67819,7 @@ ] }, { - "key": "IsReady", + "base": "IsReady", "context": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "entry": { "name": "In", @@ -67850,7 +67850,7 @@ ] }, { - "key": "GetStatus", + "base": "GetStatus", "context": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "entry": { "name": "In", @@ -67881,7 +67881,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "{A1F6761B-B5CA-59E6-89FF-EB0ABDF6BD68}", "entry": { "name": "In", @@ -67914,7 +67914,7 @@ ] }, { - "key": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", + "base": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "context": "OnDemandReflected", "variant": "", "details": { @@ -67924,7 +67924,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -67962,7 +67962,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68006,7 +68006,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68035,7 +68035,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68066,7 +68066,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68097,7 +68097,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68128,7 +68128,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68159,7 +68159,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68197,7 +68197,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68235,7 +68235,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68266,7 +68266,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68304,7 +68304,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68335,7 +68335,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68366,7 +68366,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{7DCCB2BE-9664-504E-8585-ED46CD3FE97F}", "entry": { "name": "In", @@ -68397,7 +68397,7 @@ ] }, { - "key": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", + "base": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "context": "OnDemandReflected", "variant": "", "details": { @@ -68407,7 +68407,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68444,7 +68444,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68487,7 +68487,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68516,7 +68516,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68547,7 +68547,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68578,7 +68578,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68609,7 +68609,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68640,7 +68640,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68677,7 +68677,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68714,7 +68714,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68745,7 +68745,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68782,7 +68782,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68813,7 +68813,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68844,7 +68844,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{681B589F-DB42-5D86-B6FC-C4B62EBC5F19}", "entry": { "name": "In", @@ -68875,7 +68875,7 @@ ] }, { - "key": "{1F0C2998-C47A-546C-A9A5-23155075A403}", + "base": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "context": "OnDemandReflected", "variant": "", "details": { @@ -68885,7 +68885,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -68922,7 +68922,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -68965,7 +68965,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -68994,7 +68994,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69025,7 +69025,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69056,7 +69056,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69087,7 +69087,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69118,7 +69118,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69155,7 +69155,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69192,7 +69192,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69223,7 +69223,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69260,7 +69260,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69291,7 +69291,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69322,7 +69322,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{1F0C2998-C47A-546C-A9A5-23155075A403}", "entry": { "name": "In", @@ -69353,7 +69353,7 @@ ] }, { - "key": "{76898795-2B30-4645-B6D4-67568ECC889F}", + "base": "{76898795-2B30-4645-B6D4-67568ECC889F}", "context": "OnDemandReflected", "variant": "", "details": { @@ -69361,7 +69361,7 @@ }, "methods": [ { - "key": "ThreeGeneric", + "base": "ThreeGeneric", "context": "{76898795-2B30-4645-B6D4-67568ECC889F}", "entry": { "name": "In", @@ -69404,7 +69404,7 @@ ] }, { - "key": "MultiplyAndAdd", + "base": "MultiplyAndAdd", "context": "{76898795-2B30-4645-B6D4-67568ECC889F}", "entry": { "name": "In", @@ -69447,7 +69447,7 @@ ] }, { - "key": "StringToNumber", + "base": "StringToNumber", "context": "{76898795-2B30-4645-B6D4-67568ECC889F}", "entry": { "name": "In", @@ -69480,7 +69480,7 @@ ] }, { - "key": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", + "base": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "context": "OnDemandReflected", "variant": "", "details": { @@ -69488,7 +69488,7 @@ }, "methods": [ { - "key": "RotationZDegrees", + "base": "RotationZDegrees", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69519,7 +69519,7 @@ ] }, { - "key": "GetUp", + "base": "GetUp", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69556,7 +69556,7 @@ ] }, { - "key": "GetForward", + "base": "GetForward", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69593,7 +69593,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69636,7 +69636,7 @@ ] }, { - "key": "RotationXDegrees", + "base": "RotationXDegrees", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69667,7 +69667,7 @@ ] }, { - "key": "FromTranslation", + "base": "FromTranslation", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69698,7 +69698,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69729,7 +69729,7 @@ ] }, { - "key": "MultiplyByUniformScale", + "base": "MultiplyByUniformScale", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69766,7 +69766,7 @@ ] }, { - "key": "MultiplyByTransform", + "base": "MultiplyByTransform", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69803,7 +69803,7 @@ ] }, { - "key": "FromRotation", + "base": "FromRotation", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69834,7 +69834,7 @@ ] }, { - "key": "RotationYDegrees", + "base": "RotationYDegrees", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69865,7 +69865,7 @@ ] }, { - "key": "FromRotationAndTranslation", + "base": "FromRotationAndTranslation", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69902,7 +69902,7 @@ ] }, { - "key": "MultiplyByVector3", + "base": "MultiplyByVector3", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69939,7 +69939,7 @@ ] }, { - "key": "MultiplyByVector4", + "base": "MultiplyByVector4", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -69976,7 +69976,7 @@ ] }, { - "key": "ToScale", + "base": "ToScale", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -70007,7 +70007,7 @@ ] }, { - "key": "FromMatrix3x3", + "base": "FromMatrix3x3", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -70038,7 +70038,7 @@ ] }, { - "key": "GetRight", + "base": "GetRight", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -70075,7 +70075,7 @@ ] }, { - "key": "IsOrthogonal", + "base": "IsOrthogonal", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -70112,7 +70112,7 @@ ] }, { - "key": "Orthogonalize", + "base": "Orthogonalize", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -70143,7 +70143,7 @@ ] }, { - "key": "FromMatrix3x3AndTranslation", + "base": "FromMatrix3x3AndTranslation", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -70180,7 +70180,7 @@ ] }, { - "key": "FromScale", + "base": "FromScale", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -70211,7 +70211,7 @@ ] }, { - "key": "GetTranslation", + "base": "GetTranslation", "context": "{59E0EF87-352C-4CFB-A810-5B8752BDD1EF}", "entry": { "name": "In", @@ -70244,7 +70244,7 @@ ] }, { - "key": "{F48E1596-F805-51F0-8BC4-E093F8517935}", + "base": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "context": "OnDemandReflected", "variant": "", "details": { @@ -70254,7 +70254,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70291,7 +70291,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70334,7 +70334,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70363,7 +70363,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70394,7 +70394,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70425,7 +70425,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70456,7 +70456,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70487,7 +70487,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70524,7 +70524,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70561,7 +70561,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70592,7 +70592,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70629,7 +70629,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70660,7 +70660,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70691,7 +70691,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{F48E1596-F805-51F0-8BC4-E093F8517935}", "entry": { "name": "In", @@ -70722,7 +70722,7 @@ ] }, { - "key": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", + "base": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "context": "OnDemandReflected", "variant": "", "details": { @@ -70730,7 +70730,7 @@ }, "methods": [ { - "key": "Transpose", + "base": "Transpose", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -70761,7 +70761,7 @@ ] }, { - "key": "Zero", + "base": "Zero", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -70784,7 +70784,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -70821,7 +70821,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -70864,7 +70864,7 @@ ] }, { - "key": "Invert", + "base": "Invert", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -70895,7 +70895,7 @@ ] }, { - "key": "GetDiagonal", + "base": "GetDiagonal", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -70926,7 +70926,7 @@ ] }, { - "key": "GetColumn", + "base": "GetColumn", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -70963,7 +70963,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71000,7 +71000,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71037,7 +71037,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71068,7 +71068,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71105,7 +71105,7 @@ ] }, { - "key": "ToAdjugate", + "base": "ToAdjugate", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71136,7 +71136,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71179,7 +71179,7 @@ ] }, { - "key": "MultiplyByMatrix", + "base": "MultiplyByMatrix", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71216,7 +71216,7 @@ ] }, { - "key": "IsOrthogonal", + "base": "IsOrthogonal", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71247,7 +71247,7 @@ ] }, { - "key": "Orthogonalize", + "base": "Orthogonalize", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71278,7 +71278,7 @@ ] }, { - "key": "GetRows", + "base": "GetRows", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71309,7 +71309,7 @@ ] }, { - "key": "FromCrossProduct", + "base": "FromCrossProduct", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71340,7 +71340,7 @@ ] }, { - "key": "GetColumns", + "base": "GetColumns", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71371,7 +71371,7 @@ ] }, { - "key": "FromTransform", + "base": "FromTransform", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71402,7 +71402,7 @@ ] }, { - "key": "FromScale", + "base": "FromScale", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71433,7 +71433,7 @@ ] }, { - "key": "ToScale", + "base": "ToScale", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71464,7 +71464,7 @@ ] }, { - "key": "FromQuaternion", + "base": "FromQuaternion", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71495,7 +71495,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71532,7 +71532,7 @@ ] }, { - "key": "GetRow", + "base": "GetRow", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71569,7 +71569,7 @@ ] }, { - "key": "FromRotationYDegrees", + "base": "FromRotationYDegrees", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71600,7 +71600,7 @@ ] }, { - "key": "FromRows", + "base": "FromRows", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71643,7 +71643,7 @@ ] }, { - "key": "FromDiagonal", + "base": "FromDiagonal", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71674,7 +71674,7 @@ ] }, { - "key": "FromRotationZDegrees", + "base": "FromRotationZDegrees", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71705,7 +71705,7 @@ ] }, { - "key": "FromMatrix4x4", + "base": "FromMatrix4x4", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71736,7 +71736,7 @@ ] }, { - "key": "FromColumns", + "base": "FromColumns", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71779,7 +71779,7 @@ ] }, { - "key": "FromRotationXDegrees", + "base": "FromRotationXDegrees", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71810,7 +71810,7 @@ ] }, { - "key": "ToDeterminant", + "base": "ToDeterminant", "context": "{8C5F6959-C2C4-46D9-9FCD-4DC234E7732D}", "entry": { "name": "In", @@ -71843,7 +71843,7 @@ ] }, { - "key": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", + "base": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -71853,7 +71853,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -71890,7 +71890,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -71933,7 +71933,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -71962,7 +71962,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -71993,7 +71993,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72024,7 +72024,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72055,7 +72055,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72086,7 +72086,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72123,7 +72123,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72160,7 +72160,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72191,7 +72191,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72228,7 +72228,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72259,7 +72259,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72290,7 +72290,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{B7141BE7-3946-56D1-8B31-CAD10C7C7D9C}", "entry": { "name": "In", @@ -72321,7 +72321,7 @@ ] }, { - "key": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", + "base": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "context": "OnDemandReflected", "variant": "", "details": { @@ -72331,7 +72331,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72368,7 +72368,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72411,7 +72411,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72440,7 +72440,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72471,7 +72471,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72502,7 +72502,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72533,7 +72533,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72564,7 +72564,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72601,7 +72601,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72638,7 +72638,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72669,7 +72669,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72706,7 +72706,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72737,7 +72737,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72768,7 +72768,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{8EA123A3-72BE-5B00-A22E-BEF0AFB0B68B}", "entry": { "name": "In", @@ -72799,7 +72799,7 @@ ] }, { - "key": "{0E9C062F-96E1-58E9-BCE0-AB93C4C425A1}", + "base": "{0E9C062F-96E1-58E9-BCE0-AB93C4C425A1}", "context": "OnDemandReflected", "variant": "", "details": { @@ -72807,7 +72807,7 @@ }, "methods": [ { - "key": "GetError", + "base": "GetError", "context": "{0E9C062F-96E1-58E9-BCE0-AB93C4C425A1}", "entry": { "name": "In", @@ -72838,7 +72838,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{0E9C062F-96E1-58E9-BCE0-AB93C4C425A1}", "entry": { "name": "In", @@ -72869,7 +72869,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{0E9C062F-96E1-58E9-BCE0-AB93C4C425A1}", "entry": { "name": "In", @@ -72901,7 +72901,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "context": "{0E9C062F-96E1-58E9-BCE0-AB93C4C425A1}", "entry": { "name": "In", @@ -72933,7 +72933,7 @@ ] }, { - "key": "Failure", + "base": "Failure", "context": "{0E9C062F-96E1-58E9-BCE0-AB93C4C425A1}", "entry": { "name": "In", @@ -72966,7 +72966,7 @@ ] }, { - "key": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", + "base": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -72976,7 +72976,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73007,7 +73007,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73038,7 +73038,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73075,7 +73075,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73104,7 +73104,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73141,7 +73141,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73172,7 +73172,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73195,7 +73195,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73226,7 +73226,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73263,7 +73263,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73294,7 +73294,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73323,7 +73323,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73352,7 +73352,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73389,7 +73389,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73426,7 +73426,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73449,7 +73449,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73480,7 +73480,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73517,7 +73517,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73554,7 +73554,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73585,7 +73585,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73616,7 +73616,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73651,7 +73651,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73682,7 +73682,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73725,7 +73725,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73754,7 +73754,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73783,7 +73783,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{7FF36F26-644E-5051-84BB-AE54534C84D4}", "entry": { "name": "In", @@ -73816,7 +73816,7 @@ ] }, { - "key": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", + "base": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -73826,7 +73826,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -73857,7 +73857,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -73888,7 +73888,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -73925,7 +73925,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -73954,7 +73954,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -73991,7 +73991,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74022,7 +74022,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74045,7 +74045,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74076,7 +74076,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74113,7 +74113,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74144,7 +74144,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74173,7 +74173,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74202,7 +74202,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74239,7 +74239,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74276,7 +74276,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74299,7 +74299,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74330,7 +74330,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74367,7 +74367,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74404,7 +74404,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74435,7 +74435,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74466,7 +74466,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74501,7 +74501,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74532,7 +74532,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74575,7 +74575,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74604,7 +74604,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74633,7 +74633,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{BFBA17B6-CDE2-5239-AEE0-58DF7FA14E3C}", "entry": { "name": "In", @@ -74666,7 +74666,7 @@ ] }, { - "key": "{5AEF7C62-0529-57B0-859D-97C69E910729}", + "base": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "context": "OnDemandReflected", "variant": "", "details": { @@ -74676,7 +74676,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74713,7 +74713,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74756,7 +74756,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74785,7 +74785,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74816,7 +74816,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74847,7 +74847,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74878,7 +74878,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74909,7 +74909,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74946,7 +74946,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -74983,7 +74983,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -75014,7 +75014,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -75051,7 +75051,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -75082,7 +75082,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -75113,7 +75113,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{5AEF7C62-0529-57B0-859D-97C69E910729}", "entry": { "name": "In", @@ -75144,7 +75144,7 @@ ] }, { - "key": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", + "base": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "context": "OnDemandReflected", "variant": "", "details": { @@ -75154,7 +75154,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75185,7 +75185,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75216,7 +75216,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75253,7 +75253,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75282,7 +75282,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75319,7 +75319,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75350,7 +75350,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75373,7 +75373,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75404,7 +75404,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75441,7 +75441,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75472,7 +75472,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75501,7 +75501,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75530,7 +75530,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75567,7 +75567,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75604,7 +75604,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75627,7 +75627,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75658,7 +75658,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75695,7 +75695,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75732,7 +75732,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75763,7 +75763,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75794,7 +75794,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75829,7 +75829,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75860,7 +75860,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75903,7 +75903,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75932,7 +75932,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75961,7 +75961,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{7770AD3E-BABE-5F1C-B322-DE5DEAE94974}", "entry": { "name": "In", @@ -75994,7 +75994,7 @@ ] }, { - "key": "{B0D91084-263A-54B9-A4F3-7C5F4240E248}", + "base": "{B0D91084-263A-54B9-A4F3-7C5F4240E248}", "context": "OnDemandReflected", "variant": "", "details": { @@ -76002,7 +76002,7 @@ }, "methods": [ { - "key": "has_value", + "base": "has_value", "context": "{B0D91084-263A-54B9-A4F3-7C5F4240E248}", "entry": { "name": "In", @@ -76033,7 +76033,7 @@ ] }, { - "key": "__bool__", + "base": "__bool__", "context": "{B0D91084-263A-54B9-A4F3-7C5F4240E248}", "entry": { "name": "In", @@ -76064,7 +76064,7 @@ ] }, { - "key": "value", + "base": "value", "context": "{B0D91084-263A-54B9-A4F3-7C5F4240E248}", "entry": { "name": "In", @@ -76095,7 +76095,7 @@ ] }, { - "key": "value_or", + "base": "value_or", "context": "{B0D91084-263A-54B9-A4F3-7C5F4240E248}", "entry": { "name": "In", @@ -76134,7 +76134,7 @@ ] }, { - "key": "{3A98C3C6-91C4-5B49-8559-1C4C9EA9BCB8}", + "base": "{3A98C3C6-91C4-5B49-8559-1C4C9EA9BCB8}", "context": "OnDemandReflected", "variant": "", "details": { @@ -76142,7 +76142,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{3A98C3C6-91C4-5B49-8559-1C4C9EA9BCB8}", "entry": { "name": "In", @@ -76173,7 +76173,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{3A98C3C6-91C4-5B49-8559-1C4C9EA9BCB8}", "entry": { "name": "In", @@ -76204,7 +76204,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{3A98C3C6-91C4-5B49-8559-1C4C9EA9BCB8}", "entry": { "name": "In", @@ -76229,7 +76229,7 @@ ] }, { - "key": "{AE62FC16-F824-5FD2-90BE-1ECF60E08A7F}", + "base": "{AE62FC16-F824-5FD2-90BE-1ECF60E08A7F}", "context": "OnDemandReflected", "variant": "", "details": { @@ -76237,7 +76237,7 @@ }, "methods": [ { - "key": "GetError", + "base": "GetError", "context": "{AE62FC16-F824-5FD2-90BE-1ECF60E08A7F}", "entry": { "name": "In", @@ -76268,7 +76268,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{AE62FC16-F824-5FD2-90BE-1ECF60E08A7F}", "entry": { "name": "In", @@ -76299,7 +76299,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{AE62FC16-F824-5FD2-90BE-1ECF60E08A7F}", "entry": { "name": "In", @@ -76330,7 +76330,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "context": "{AE62FC16-F824-5FD2-90BE-1ECF60E08A7F}", "entry": { "name": "In", @@ -76361,7 +76361,7 @@ ] }, { - "key": "Failure", + "base": "Failure", "context": "{AE62FC16-F824-5FD2-90BE-1ECF60E08A7F}", "entry": { "name": "In", @@ -76394,7 +76394,7 @@ ] }, { - "key": "{4B687295-2381-5741-AA96-F7441F09267B}", + "base": "{4B687295-2381-5741-AA96-F7441F09267B}", "context": "OnDemandReflected", "variant": "", "details": { @@ -76402,7 +76402,7 @@ }, "methods": [ { - "key": "GetError", + "base": "GetError", "context": "{4B687295-2381-5741-AA96-F7441F09267B}", "entry": { "name": "In", @@ -76433,7 +76433,7 @@ ] }, { - "key": "IsSuccess", + "base": "IsSuccess", "context": "{4B687295-2381-5741-AA96-F7441F09267B}", "entry": { "name": "In", @@ -76464,7 +76464,7 @@ ] }, { - "key": "Success", + "base": "Success", "context": "{4B687295-2381-5741-AA96-F7441F09267B}", "entry": { "name": "In", @@ -76495,7 +76495,7 @@ ] }, { - "key": "GetValue", + "base": "GetValue", "context": "{4B687295-2381-5741-AA96-F7441F09267B}", "entry": { "name": "In", @@ -76526,7 +76526,7 @@ ] }, { - "key": "Failure", + "base": "Failure", "context": "{4B687295-2381-5741-AA96-F7441F09267B}", "entry": { "name": "In", @@ -76559,7 +76559,7 @@ ] }, { - "key": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", + "base": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "context": "OnDemandReflected", "variant": "", "details": { @@ -76569,7 +76569,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76606,7 +76606,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76649,7 +76649,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76678,7 +76678,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76709,7 +76709,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76740,7 +76740,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76771,7 +76771,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76802,7 +76802,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76839,7 +76839,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76876,7 +76876,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76907,7 +76907,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76944,7 +76944,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -76975,7 +76975,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -77006,7 +77006,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{BCE9535C-B250-56FE-97DF-36D4E06C6172}", "entry": { "name": "In", @@ -77037,7 +77037,7 @@ ] }, { - "key": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", + "base": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "context": "OnDemandReflected", "variant": "", "details": { @@ -77047,7 +77047,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77084,7 +77084,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77127,7 +77127,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77156,7 +77156,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77187,7 +77187,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77218,7 +77218,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77249,7 +77249,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77280,7 +77280,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77317,7 +77317,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77354,7 +77354,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77385,7 +77385,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77422,7 +77422,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77453,7 +77453,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77484,7 +77484,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{401CAC93-74F8-5025-81EF-63F124BC87AF}", "entry": { "name": "In", @@ -77515,7 +77515,7 @@ ] }, { - "key": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", + "base": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "context": "OnDemandReflected", "variant": "", "details": { @@ -77525,7 +77525,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77556,7 +77556,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77587,7 +77587,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77624,7 +77624,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77653,7 +77653,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77690,7 +77690,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77721,7 +77721,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77744,7 +77744,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77775,7 +77775,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77812,7 +77812,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77843,7 +77843,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77872,7 +77872,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77901,7 +77901,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77938,7 +77938,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77975,7 +77975,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -77998,7 +77998,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78029,7 +78029,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78066,7 +78066,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78103,7 +78103,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78134,7 +78134,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78165,7 +78165,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78200,7 +78200,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78231,7 +78231,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78274,7 +78274,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78303,7 +78303,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78332,7 +78332,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{16DCF0FE-97AD-54FE-8796-74CE2156240B}", "entry": { "name": "In", @@ -78365,7 +78365,7 @@ ] }, { - "key": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", + "base": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -78375,7 +78375,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78406,7 +78406,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78438,7 +78438,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78475,7 +78475,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78504,7 +78504,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78542,7 +78542,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78574,7 +78574,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78597,7 +78597,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78628,7 +78628,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78666,7 +78666,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78697,7 +78697,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78726,7 +78726,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78756,7 +78756,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78794,7 +78794,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78832,7 +78832,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78855,7 +78855,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78886,7 +78886,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78923,7 +78923,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78960,7 +78960,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -78991,7 +78991,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -79022,7 +79022,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -79058,7 +79058,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -79089,7 +79089,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -79133,7 +79133,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -79163,7 +79163,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -79192,7 +79192,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}", "entry": { "name": "In", @@ -79225,7 +79225,7 @@ ] }, { - "key": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", + "base": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "context": "OnDemandReflected", "variant": "", "details": { @@ -79235,7 +79235,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79266,7 +79266,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79297,7 +79297,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79334,7 +79334,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79363,7 +79363,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79400,7 +79400,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79431,7 +79431,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79454,7 +79454,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79485,7 +79485,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79522,7 +79522,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79553,7 +79553,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79582,7 +79582,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79611,7 +79611,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79648,7 +79648,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79685,7 +79685,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79708,7 +79708,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79739,7 +79739,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79776,7 +79776,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79813,7 +79813,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79844,7 +79844,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79875,7 +79875,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79910,7 +79910,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79941,7 +79941,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -79984,7 +79984,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -80013,7 +80013,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -80042,7 +80042,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{5CBE5640-DF5C-5A49-9195-D790881A0747}", "entry": { "name": "In", @@ -80075,7 +80075,7 @@ ] }, { - "key": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", + "base": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "context": "OnDemandReflected", "variant": "", "details": { @@ -80085,7 +80085,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80116,7 +80116,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80147,7 +80147,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80184,7 +80184,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80213,7 +80213,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80250,7 +80250,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80281,7 +80281,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80304,7 +80304,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80335,7 +80335,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80372,7 +80372,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80403,7 +80403,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80432,7 +80432,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80461,7 +80461,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80498,7 +80498,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80535,7 +80535,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80558,7 +80558,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80589,7 +80589,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80626,7 +80626,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80663,7 +80663,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80694,7 +80694,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80725,7 +80725,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80760,7 +80760,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80791,7 +80791,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80834,7 +80834,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80863,7 +80863,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80892,7 +80892,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{8293031B-ABC3-5CD2-A1CB-1DB6792ADD5C}", "entry": { "name": "In", @@ -80925,7 +80925,7 @@ ] }, { - "key": "{A9AF6811-A281-5484-9A1B-4D036F173054}", + "base": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "context": "OnDemandReflected", "variant": "", "details": { @@ -80935,7 +80935,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -80973,7 +80973,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81017,7 +81017,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81046,7 +81046,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81077,7 +81077,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81108,7 +81108,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81139,7 +81139,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81170,7 +81170,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81208,7 +81208,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81246,7 +81246,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81277,7 +81277,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81315,7 +81315,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81346,7 +81346,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81377,7 +81377,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{A9AF6811-A281-5484-9A1B-4D036F173054}", "entry": { "name": "In", @@ -81408,7 +81408,7 @@ ] }, { - "key": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", + "base": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "context": "OnDemandReflected", "variant": "", "details": { @@ -81418,7 +81418,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81449,7 +81449,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81480,7 +81480,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81517,7 +81517,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81546,7 +81546,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81583,7 +81583,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81614,7 +81614,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81637,7 +81637,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81668,7 +81668,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81705,7 +81705,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81736,7 +81736,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81765,7 +81765,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81794,7 +81794,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81831,7 +81831,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81868,7 +81868,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81891,7 +81891,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81922,7 +81922,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81959,7 +81959,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -81996,7 +81996,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -82027,7 +82027,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -82058,7 +82058,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -82093,7 +82093,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -82124,7 +82124,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -82167,7 +82167,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -82196,7 +82196,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -82225,7 +82225,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{3349AACD-BE04-50BC-9478-528BF2ACFD55}", "entry": { "name": "In", @@ -82258,7 +82258,7 @@ ] }, { - "key": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", + "base": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "context": "OnDemandReflected", "variant": "", "details": { @@ -82268,7 +82268,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82305,7 +82305,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82348,7 +82348,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82377,7 +82377,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82408,7 +82408,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82439,7 +82439,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82470,7 +82470,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82501,7 +82501,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82538,7 +82538,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82575,7 +82575,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82606,7 +82606,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82643,7 +82643,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82674,7 +82674,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82705,7 +82705,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{C6B5A66B-6C0C-5D91-9CEE-88A5AEE507DC}", "entry": { "name": "In", @@ -82736,7 +82736,7 @@ ] }, { - "key": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", + "base": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "context": "OnDemandReflected", "variant": "", "details": { @@ -82746,7 +82746,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -82783,7 +82783,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -82827,7 +82827,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -82856,7 +82856,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -82887,7 +82887,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -82918,7 +82918,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -82949,7 +82949,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -82980,7 +82980,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -83017,7 +83017,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -83054,7 +83054,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -83085,7 +83085,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -83123,7 +83123,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -83154,7 +83154,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -83185,7 +83185,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{2B02AB33-C406-5E1C-9416-740FD3BD03A1}", "entry": { "name": "In", @@ -83216,7 +83216,7 @@ ] }, { - "key": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}", + "base": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}", "context": "OnDemandReflected", "variant": "", "details": { @@ -83224,7 +83224,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}", "entry": { "name": "In", @@ -83255,7 +83255,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}", "entry": { "name": "In", @@ -83286,7 +83286,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}", "entry": { "name": "In", @@ -83311,7 +83311,7 @@ ] }, { - "key": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", + "base": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "context": "OnDemandReflected", "variant": "", "details": { @@ -83319,7 +83319,7 @@ }, "methods": [ { - "key": "GetPlaneEquationCoefficients", + "base": "GetPlaneEquationCoefficients", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83350,7 +83350,7 @@ ] }, { - "key": "GetDistance", + "base": "GetDistance", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83381,7 +83381,7 @@ ] }, { - "key": "Project", + "base": "Project", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83418,7 +83418,7 @@ ] }, { - "key": "FromNormalAndPoint", + "base": "FromNormalAndPoint", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83455,7 +83455,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83486,7 +83486,7 @@ ] }, { - "key": "Transform", + "base": "Transform", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83523,7 +83523,7 @@ ] }, { - "key": "DistanceToPoint", + "base": "DistanceToPoint", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83560,7 +83560,7 @@ ] }, { - "key": "FromCoefficients", + "base": "FromCoefficients", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83609,7 +83609,7 @@ ] }, { - "key": "FromNormalAndDistance", + "base": "FromNormalAndDistance", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83646,7 +83646,7 @@ ] }, { - "key": "GetNormal", + "base": "GetNormal", "context": "{F2C799DF-2CC1-4DD8-91DC-18C2D517BAB0}", "entry": { "name": "In", @@ -83679,7 +83679,7 @@ ] }, { - "key": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", + "base": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "context": "OnDemandReflected", "variant": "", "details": { @@ -83689,7 +83689,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83726,7 +83726,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83769,7 +83769,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83798,7 +83798,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83829,7 +83829,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83860,7 +83860,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83891,7 +83891,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83922,7 +83922,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83959,7 +83959,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -83996,7 +83996,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -84027,7 +84027,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -84064,7 +84064,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -84095,7 +84095,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -84126,7 +84126,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{24BA43F8-220C-589A-AA28-EAF5949C48F3}", "entry": { "name": "In", @@ -84157,7 +84157,7 @@ ] }, { - "key": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", + "base": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "context": "OnDemandReflected", "variant": "", "details": { @@ -84167,7 +84167,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84198,7 +84198,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84229,7 +84229,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84266,7 +84266,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84295,7 +84295,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84332,7 +84332,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84363,7 +84363,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84386,7 +84386,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84417,7 +84417,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84454,7 +84454,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84485,7 +84485,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84514,7 +84514,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84543,7 +84543,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84580,7 +84580,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84617,7 +84617,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84640,7 +84640,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84671,7 +84671,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84708,7 +84708,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84745,7 +84745,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84776,7 +84776,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84807,7 +84807,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84842,7 +84842,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84873,7 +84873,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84916,7 +84916,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84945,7 +84945,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -84974,7 +84974,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{13D041F6-75FA-5093-AD85-827A2CEA1646}", "entry": { "name": "In", @@ -85007,7 +85007,7 @@ ] }, { - "key": "{3127F618-4C25-512D-97E2-888640B6303D}", + "base": "{3127F618-4C25-512D-97E2-888640B6303D}", "context": "OnDemandReflected", "variant": "", "details": { @@ -85017,7 +85017,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85054,7 +85054,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85098,7 +85098,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85127,7 +85127,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85158,7 +85158,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85189,7 +85189,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85220,7 +85220,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85251,7 +85251,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85288,7 +85288,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85325,7 +85325,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85356,7 +85356,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85394,7 +85394,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85425,7 +85425,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85456,7 +85456,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{3127F618-4C25-512D-97E2-888640B6303D}", "entry": { "name": "In", @@ -85487,7 +85487,7 @@ ] }, { - "key": "{EC31903C-334D-5991-99E1-6B9A94A31423}", + "base": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "context": "OnDemandReflected", "variant": "", "details": { @@ -85497,7 +85497,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85534,7 +85534,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85577,7 +85577,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85606,7 +85606,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85637,7 +85637,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85668,7 +85668,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85699,7 +85699,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85730,7 +85730,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85767,7 +85767,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85804,7 +85804,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85835,7 +85835,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85872,7 +85872,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85903,7 +85903,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85934,7 +85934,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{EC31903C-334D-5991-99E1-6B9A94A31423}", "entry": { "name": "In", @@ -85965,7 +85965,7 @@ ] }, { - "key": "{F31AA4C4-5A73-510B-BFD3-20ACE0D9CE67}", + "base": "{F31AA4C4-5A73-510B-BFD3-20ACE0D9CE67}", "context": "OnDemandReflected", "variant": "", "details": { @@ -85973,7 +85973,7 @@ }, "methods": [ { - "key": "Get0", + "base": "Get0", "context": "{F31AA4C4-5A73-510B-BFD3-20ACE0D9CE67}", "entry": { "name": "In", @@ -86004,7 +86004,7 @@ ] }, { - "key": "Get1", + "base": "Get1", "context": "{F31AA4C4-5A73-510B-BFD3-20ACE0D9CE67}", "entry": { "name": "In", @@ -86035,7 +86035,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{F31AA4C4-5A73-510B-BFD3-20ACE0D9CE67}", "entry": { "name": "In", @@ -86060,7 +86060,7 @@ ] }, { - "key": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", + "base": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -86070,7 +86070,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86107,7 +86107,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86150,7 +86150,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86179,7 +86179,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86210,7 +86210,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86241,7 +86241,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86272,7 +86272,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86303,7 +86303,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86340,7 +86340,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86377,7 +86377,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86408,7 +86408,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86445,7 +86445,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86476,7 +86476,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86507,7 +86507,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{5FF88453-CF6E-5859-BF56-4F29CCBD73D4}", "entry": { "name": "In", @@ -86538,7 +86538,7 @@ ] }, { - "key": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", + "base": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "context": "OnDemandReflected", "variant": "", "details": { @@ -86548,7 +86548,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86585,7 +86585,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86628,7 +86628,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86657,7 +86657,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86688,7 +86688,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86719,7 +86719,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86750,7 +86750,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86781,7 +86781,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86818,7 +86818,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86855,7 +86855,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86886,7 +86886,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86923,7 +86923,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86954,7 +86954,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -86985,7 +86985,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{E1CD6BDA-AB0E-5B5A-8DDA-AFEF7A94FD06}", "entry": { "name": "In", @@ -87016,7 +87016,7 @@ ] }, { - "key": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", + "base": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "context": "OnDemandReflected", "variant": "", "details": { @@ -87024,7 +87024,7 @@ }, "methods": [ { - "key": "IsLoading", + "base": "IsLoading", "context": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "entry": { "name": "In", @@ -87055,7 +87055,7 @@ ] }, { - "key": "GetType", + "base": "GetType", "context": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "entry": { "name": "In", @@ -87086,7 +87086,7 @@ ] }, { - "key": "IsError", + "base": "IsError", "context": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "entry": { "name": "In", @@ -87117,7 +87117,7 @@ ] }, { - "key": "GetHint", + "base": "GetHint", "context": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "entry": { "name": "In", @@ -87148,7 +87148,7 @@ ] }, { - "key": "GetData", + "base": "GetData", "context": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "entry": { "name": "In", @@ -87179,7 +87179,7 @@ ] }, { - "key": "IsReady", + "base": "IsReady", "context": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "entry": { "name": "In", @@ -87210,7 +87210,7 @@ ] }, { - "key": "GetStatus", + "base": "GetStatus", "context": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "entry": { "name": "In", @@ -87241,7 +87241,7 @@ ] }, { - "key": "GetId", + "base": "GetId", "context": "{C3B16018-28FB-5CFE-B871-25B6E2F0B110}", "entry": { "name": "In", @@ -87274,7 +87274,7 @@ ] }, { - "key": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", + "base": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "context": "OnDemandReflected", "variant": "", "details": { @@ -87284,7 +87284,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87321,7 +87321,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87364,7 +87364,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87393,7 +87393,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87424,7 +87424,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87455,7 +87455,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87486,7 +87486,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87517,7 +87517,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87554,7 +87554,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87591,7 +87591,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87622,7 +87622,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87659,7 +87659,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87690,7 +87690,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87721,7 +87721,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{D96F5CA8-E7CE-5786-8C89-9D779A263909}", "entry": { "name": "In", @@ -87752,7 +87752,7 @@ ] }, { - "key": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", + "base": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "context": "OnDemandReflected", "variant": "", "details": { @@ -87762,7 +87762,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -87799,7 +87799,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -87842,7 +87842,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -87871,7 +87871,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -87902,7 +87902,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -87933,7 +87933,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -87964,7 +87964,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -87995,7 +87995,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -88032,7 +88032,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -88069,7 +88069,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -88100,7 +88100,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -88137,7 +88137,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -88168,7 +88168,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -88199,7 +88199,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{9EB5F5B2-ED76-5142-A631-4FF058C1B1F9}", "entry": { "name": "In", @@ -88230,7 +88230,7 @@ ] }, { - "key": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", + "base": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "context": "OnDemandReflected", "variant": "", "details": { @@ -88238,7 +88238,7 @@ }, "methods": [ { - "key": "Reciprocal", + "base": "Reciprocal", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88269,7 +88269,7 @@ ] }, { - "key": "Subtract", + "base": "Subtract", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88306,7 +88306,7 @@ ] }, { - "key": "Project", + "base": "Project", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88343,7 +88343,7 @@ ] }, { - "key": "Normalize", + "base": "Normalize", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88374,7 +88374,7 @@ ] }, { - "key": "Distance", + "base": "Distance", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88411,7 +88411,7 @@ ] }, { - "key": "SetZ", + "base": "SetZ", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88448,7 +88448,7 @@ ] }, { - "key": "Max", + "base": "Max", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88485,7 +88485,7 @@ ] }, { - "key": "GetElement", + "base": "GetElement", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88522,7 +88522,7 @@ ] }, { - "key": "Absolute", + "base": "Absolute", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88553,7 +88553,7 @@ ] }, { - "key": "BuildTangentBasis", + "base": "BuildTangentBasis", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88584,7 +88584,7 @@ ] }, { - "key": "Clamp", + "base": "Clamp", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88627,7 +88627,7 @@ ] }, { - "key": "MultiplyByNumber", + "base": "MultiplyByNumber", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88664,7 +88664,7 @@ ] }, { - "key": "Slerp", + "base": "Slerp", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88707,7 +88707,7 @@ ] }, { - "key": "IsZero", + "base": "IsZero", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88744,7 +88744,7 @@ ] }, { - "key": "SetY", + "base": "SetY", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88781,7 +88781,7 @@ ] }, { - "key": "IsClose", + "base": "IsClose", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88824,7 +88824,7 @@ ] }, { - "key": "Cross", + "base": "Cross", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88861,7 +88861,7 @@ ] }, { - "key": "DirectionTo", + "base": "DirectionTo", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88904,7 +88904,7 @@ ] }, { - "key": "MultiplyByVector", + "base": "MultiplyByVector", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88941,7 +88941,7 @@ ] }, { - "key": "Negate", + "base": "Negate", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -88972,7 +88972,7 @@ ] }, { - "key": "Add", + "base": "Add", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89009,7 +89009,7 @@ ] }, { - "key": "IsPerpendicular", + "base": "IsPerpendicular", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89052,7 +89052,7 @@ ] }, { - "key": "IsFinite", + "base": "IsFinite", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89083,7 +89083,7 @@ ] }, { - "key": "DivideByNumber", + "base": "DivideByNumber", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89120,7 +89120,7 @@ ] }, { - "key": "IsNormalized", + "base": "IsNormalized", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89157,7 +89157,7 @@ ] }, { - "key": "LengthSquared", + "base": "LengthSquared", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89188,7 +89188,7 @@ ] }, { - "key": "FromValues", + "base": "FromValues", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89231,7 +89231,7 @@ ] }, { - "key": "Dot", + "base": "Dot", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89268,7 +89268,7 @@ ] }, { - "key": "SetX", + "base": "SetX", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89305,7 +89305,7 @@ ] }, { - "key": "LengthReciprocal", + "base": "LengthReciprocal", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89336,7 +89336,7 @@ ] }, { - "key": "Min", + "base": "Min", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89373,7 +89373,7 @@ ] }, { - "key": "DistanceSquared", + "base": "DistanceSquared", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89410,7 +89410,7 @@ ] }, { - "key": "Length", + "base": "Length", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89441,7 +89441,7 @@ ] }, { - "key": "DivideByVector", + "base": "DivideByVector", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89478,7 +89478,7 @@ ] }, { - "key": "Lerp", + "base": "Lerp", "context": "{53EA7604-E3AE-4E88-BE0E-66CBC488A7DB}", "entry": { "name": "In", @@ -89523,7 +89523,7 @@ ] }, { - "key": "{4985DFB0-7CD9-5B28-980B-BA2C701BE3D6}", + "base": "{4985DFB0-7CD9-5B28-980B-BA2C701BE3D6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -89531,7 +89531,7 @@ }, "methods": [ { - "key": "HasHandlerConnected", + "base": "HasHandlerConnected", "context": "{4985DFB0-7CD9-5B28-980B-BA2C701BE3D6}", "entry": { "name": "In", @@ -89564,7 +89564,7 @@ ] }, { - "key": "{2F556390-49B3-5F20-8206-21D323D977E6}", + "base": "{2F556390-49B3-5F20-8206-21D323D977E6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -89574,7 +89574,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89611,7 +89611,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89654,7 +89654,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89683,7 +89683,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89714,7 +89714,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89745,7 +89745,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89776,7 +89776,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89807,7 +89807,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89844,7 +89844,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89881,7 +89881,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89912,7 +89912,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89949,7 +89949,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -89980,7 +89980,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -90011,7 +90011,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{2F556390-49B3-5F20-8206-21D323D977E6}", "entry": { "name": "In", @@ -90042,7 +90042,7 @@ ] }, { - "key": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", + "base": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -90052,7 +90052,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90089,7 +90089,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90132,7 +90132,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90161,7 +90161,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90192,7 +90192,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90223,7 +90223,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90254,7 +90254,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90285,7 +90285,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90322,7 +90322,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90359,7 +90359,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90390,7 +90390,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90427,7 +90427,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90458,7 +90458,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90489,7 +90489,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{180562CD-DF5B-5AC3-B867-9FBFB3A2539A}", "entry": { "name": "In", @@ -90520,7 +90520,7 @@ ] }, { - "key": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", + "base": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "context": "OnDemandReflected", "variant": "", "details": { @@ -90530,7 +90530,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90567,7 +90567,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90610,7 +90610,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90639,7 +90639,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90670,7 +90670,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90701,7 +90701,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90732,7 +90732,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90763,7 +90763,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90800,7 +90800,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90837,7 +90837,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90868,7 +90868,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90905,7 +90905,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90936,7 +90936,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90967,7 +90967,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{9F4210F0-9A8E-5536-A6FD-F3F55D854C0A}", "entry": { "name": "In", @@ -90998,7 +90998,7 @@ ] }, { - "key": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", + "base": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "context": "OnDemandReflected", "variant": "", "details": { @@ -91008,7 +91008,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91045,7 +91045,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91088,7 +91088,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91117,7 +91117,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91148,7 +91148,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91179,7 +91179,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91210,7 +91210,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91241,7 +91241,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91278,7 +91278,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91315,7 +91315,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91346,7 +91346,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91383,7 +91383,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91414,7 +91414,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91445,7 +91445,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{0764BFDD-6E1D-5F12-B746-219C67028B25}", "entry": { "name": "In", @@ -91476,7 +91476,7 @@ ] }, { - "key": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", + "base": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "context": "OnDemandReflected", "variant": "", "details": { @@ -91486,7 +91486,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91524,7 +91524,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91568,7 +91568,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91597,7 +91597,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91628,7 +91628,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91659,7 +91659,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91690,7 +91690,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91721,7 +91721,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91759,7 +91759,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91797,7 +91797,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91828,7 +91828,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91866,7 +91866,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91897,7 +91897,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91928,7 +91928,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{0D825FF8-6E54-5ADD-93B0-93496090CEFA}", "entry": { "name": "In", @@ -91959,7 +91959,7 @@ ] }, { - "key": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", + "base": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "context": "OnDemandReflected", "variant": "", "details": { @@ -91969,7 +91969,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92000,7 +92000,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92031,7 +92031,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92068,7 +92068,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92097,7 +92097,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92134,7 +92134,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92165,7 +92165,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92188,7 +92188,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92219,7 +92219,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92256,7 +92256,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92287,7 +92287,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92316,7 +92316,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92345,7 +92345,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92382,7 +92382,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92419,7 +92419,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92442,7 +92442,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92473,7 +92473,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92510,7 +92510,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92547,7 +92547,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92578,7 +92578,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92609,7 +92609,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92644,7 +92644,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92675,7 +92675,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92718,7 +92718,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92747,7 +92747,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92776,7 +92776,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{FA815A11-0F6B-5BB9-8C9F-71669EB6D4B0}", "entry": { "name": "In", @@ -92809,7 +92809,7 @@ ] }, { - "key": "{2B7F6107-B177-5C17-9408-823396E6D8B8}", + "base": "{2B7F6107-B177-5C17-9408-823396E6D8B8}", "context": "OnDemandReflected", "variant": "", "details": { @@ -92819,7 +92819,7 @@ }, "methods": [ { - "key": "get", + "base": "get", "context": "{2B7F6107-B177-5C17-9408-823396E6D8B8}", "entry": { "name": "In", @@ -92852,7 +92852,7 @@ ] }, { - "key": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", + "base": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "context": "OnDemandReflected", "variant": "", "details": { @@ -92862,7 +92862,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -92893,7 +92893,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -92925,7 +92925,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -92962,7 +92962,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -92991,7 +92991,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93029,7 +93029,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93061,7 +93061,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93084,7 +93084,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93115,7 +93115,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93153,7 +93153,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93184,7 +93184,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93213,7 +93213,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93243,7 +93243,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93281,7 +93281,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93319,7 +93319,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93342,7 +93342,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93373,7 +93373,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93410,7 +93410,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93447,7 +93447,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93478,7 +93478,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93509,7 +93509,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93545,7 +93545,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93576,7 +93576,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93620,7 +93620,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93650,7 +93650,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93679,7 +93679,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{6ED13EA7-791B-57A8-A4F1-560B5F35B472}", "entry": { "name": "In", @@ -93712,7 +93712,7 @@ ] }, { - "key": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", + "base": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "context": "OnDemandReflected", "variant": "", "details": { @@ -93722,7 +93722,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -93759,7 +93759,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -93802,7 +93802,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -93831,7 +93831,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -93862,7 +93862,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -93893,7 +93893,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -93924,7 +93924,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -93955,7 +93955,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -93992,7 +93992,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -94029,7 +94029,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -94060,7 +94060,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -94097,7 +94097,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -94128,7 +94128,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -94159,7 +94159,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{9ABF5933-C8FC-53CD-A518-B6AF433CF496}", "entry": { "name": "In", @@ -94190,7 +94190,7 @@ ] }, { - "key": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", + "base": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "context": "OnDemandReflected", "variant": "", "details": { @@ -94200,7 +94200,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94237,7 +94237,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94280,7 +94280,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94309,7 +94309,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94340,7 +94340,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94371,7 +94371,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94402,7 +94402,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94433,7 +94433,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94470,7 +94470,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94507,7 +94507,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94538,7 +94538,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94575,7 +94575,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94606,7 +94606,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94637,7 +94637,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{D9EF6EA6-B182-5A36-A7FF-E376FD0C05C7}", "entry": { "name": "In", @@ -94668,7 +94668,7 @@ ] }, { - "key": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", + "base": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -94678,7 +94678,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94715,7 +94715,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94758,7 +94758,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94787,7 +94787,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94818,7 +94818,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94849,7 +94849,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94880,7 +94880,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94911,7 +94911,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94948,7 +94948,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -94985,7 +94985,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -95016,7 +95016,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -95053,7 +95053,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -95084,7 +95084,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -95115,7 +95115,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{AF6D8DD5-0386-5E48-86B0-86131BC0D2D6}", "entry": { "name": "In", @@ -95146,7 +95146,7 @@ ] }, { - "key": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", + "base": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "context": "OnDemandReflected", "variant": "", "details": { @@ -95156,7 +95156,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95187,7 +95187,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95218,7 +95218,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95255,7 +95255,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95284,7 +95284,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95321,7 +95321,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95352,7 +95352,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95375,7 +95375,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95406,7 +95406,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95443,7 +95443,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95474,7 +95474,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95503,7 +95503,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95532,7 +95532,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95569,7 +95569,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95606,7 +95606,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95629,7 +95629,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95660,7 +95660,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95697,7 +95697,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95734,7 +95734,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95765,7 +95765,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95796,7 +95796,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95831,7 +95831,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95862,7 +95862,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95905,7 +95905,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95934,7 +95934,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95963,7 +95963,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{24A1B3FF-51E3-5699-9ED7-49D835DE1DED}", "entry": { "name": "In", @@ -95996,7 +95996,7 @@ ] }, { - "key": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", + "base": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "context": "OnDemandReflected", "variant": "", "details": { @@ -96006,7 +96006,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96044,7 +96044,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96088,7 +96088,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96117,7 +96117,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96148,7 +96148,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96179,7 +96179,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96210,7 +96210,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96241,7 +96241,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96279,7 +96279,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96317,7 +96317,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96348,7 +96348,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96386,7 +96386,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96417,7 +96417,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96448,7 +96448,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{6965E71B-A623-5D36-98D9-3758EF2E8045}", "entry": { "name": "In", @@ -96479,7 +96479,7 @@ ] }, { - "key": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", + "base": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "context": "OnDemandReflected", "variant": "", "details": { @@ -96489,7 +96489,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96527,7 +96527,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96571,7 +96571,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96600,7 +96600,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96631,7 +96631,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96662,7 +96662,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96693,7 +96693,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96724,7 +96724,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96762,7 +96762,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96800,7 +96800,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96831,7 +96831,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96869,7 +96869,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96900,7 +96900,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96931,7 +96931,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{641B736D-7467-5446-9083-EC81DC8E6E5B}", "entry": { "name": "In", @@ -96962,7 +96962,7 @@ ] }, { - "key": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", + "base": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "context": "OnDemandReflected", "variant": "", "details": { @@ -96972,7 +96972,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97009,7 +97009,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97052,7 +97052,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97081,7 +97081,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97112,7 +97112,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97143,7 +97143,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97174,7 +97174,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97205,7 +97205,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97242,7 +97242,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97279,7 +97279,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97310,7 +97310,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97347,7 +97347,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97378,7 +97378,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97409,7 +97409,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{12AE825D-565E-5717-A7A2-6C8AADABE08F}", "entry": { "name": "In", @@ -97440,7 +97440,7 @@ ] }, { - "key": "{8FE8A00F-5FE8-54A1-A314-346843AD21B6}", + "base": "{8FE8A00F-5FE8-54A1-A314-346843AD21B6}", "context": "OnDemandReflected", "variant": "", "details": { @@ -97448,7 +97448,7 @@ }, "methods": [ { - "key": "has_value", + "base": "has_value", "context": "{8FE8A00F-5FE8-54A1-A314-346843AD21B6}", "entry": { "name": "In", @@ -97479,7 +97479,7 @@ ] }, { - "key": "__bool__", + "base": "__bool__", "context": "{8FE8A00F-5FE8-54A1-A314-346843AD21B6}", "entry": { "name": "In", @@ -97510,7 +97510,7 @@ ] }, { - "key": "value", + "base": "value", "context": "{8FE8A00F-5FE8-54A1-A314-346843AD21B6}", "entry": { "name": "In", @@ -97541,7 +97541,7 @@ ] }, { - "key": "value_or", + "base": "value_or", "context": "{8FE8A00F-5FE8-54A1-A314-346843AD21B6}", "entry": { "name": "In", @@ -97580,7 +97580,7 @@ ] }, { - "key": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", + "base": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "context": "OnDemandReflected", "variant": "", "details": { @@ -97590,7 +97590,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97627,7 +97627,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97670,7 +97670,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97699,7 +97699,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97730,7 +97730,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97761,7 +97761,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97792,7 +97792,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97823,7 +97823,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97860,7 +97860,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97897,7 +97897,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97928,7 +97928,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97965,7 +97965,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -97996,7 +97996,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -98027,7 +98027,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{D03054C0-295C-5B7A-9997-5B2EE7B1B2B9}", "entry": { "name": "In", @@ -98058,7 +98058,7 @@ ] }, { - "key": "{8E0A7AC1-C649-56B4-99CF-8BE08EEFC47B}", + "base": "{8E0A7AC1-C649-56B4-99CF-8BE08EEFC47B}", "context": "OnDemandReflected", "variant": "", "details": { @@ -98066,7 +98066,7 @@ }, "methods": [ { - "key": "has_value", + "base": "has_value", "context": "{8E0A7AC1-C649-56B4-99CF-8BE08EEFC47B}", "entry": { "name": "In", @@ -98097,7 +98097,7 @@ ] }, { - "key": "__bool__", + "base": "__bool__", "context": "{8E0A7AC1-C649-56B4-99CF-8BE08EEFC47B}", "entry": { "name": "In", @@ -98128,7 +98128,7 @@ ] }, { - "key": "value", + "base": "value", "context": "{8E0A7AC1-C649-56B4-99CF-8BE08EEFC47B}", "entry": { "name": "In", @@ -98159,7 +98159,7 @@ ] }, { - "key": "value_or", + "base": "value_or", "context": "{8E0A7AC1-C649-56B4-99CF-8BE08EEFC47B}", "entry": { "name": "In", @@ -98198,7 +98198,7 @@ ] }, { - "key": "{0170062C-2E7E-5CEB-BAB8-F7663BEF7B3E}", + "base": "{0170062C-2E7E-5CEB-BAB8-F7663BEF7B3E}", "context": "OnDemandReflected", "variant": "", "details": { @@ -98206,7 +98206,7 @@ }, "methods": [ { - "key": "has_value", + "base": "has_value", "context": "{0170062C-2E7E-5CEB-BAB8-F7663BEF7B3E}", "entry": { "name": "In", @@ -98237,7 +98237,7 @@ ] }, { - "key": "__bool__", + "base": "__bool__", "context": "{0170062C-2E7E-5CEB-BAB8-F7663BEF7B3E}", "entry": { "name": "In", @@ -98268,7 +98268,7 @@ ] }, { - "key": "value", + "base": "value", "context": "{0170062C-2E7E-5CEB-BAB8-F7663BEF7B3E}", "entry": { "name": "In", @@ -98299,7 +98299,7 @@ ] }, { - "key": "value_or", + "base": "value_or", "context": "{0170062C-2E7E-5CEB-BAB8-F7663BEF7B3E}", "entry": { "name": "In", @@ -98338,7 +98338,7 @@ ] }, { - "key": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", + "base": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "context": "OnDemandReflected", "variant": "", "details": { @@ -98348,7 +98348,7 @@ }, "methods": [ { - "key": "contains", + "base": "contains", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98385,7 +98385,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98428,7 +98428,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98457,7 +98457,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98488,7 +98488,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98519,7 +98519,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98550,7 +98550,7 @@ ] }, { - "key": "Size", + "base": "Size", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98581,7 +98581,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98618,7 +98618,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98655,7 +98655,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98686,7 +98686,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98723,7 +98723,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98754,7 +98754,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98785,7 +98785,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{9E069E13-E1B2-5178-9219-52C9F0BFC0AB}", "entry": { "name": "In", @@ -98816,7 +98816,7 @@ ] }, { - "key": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", + "base": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "context": "OnDemandReflected", "variant": "", "details": { @@ -98826,7 +98826,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -98857,7 +98857,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -98888,7 +98888,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -98925,7 +98925,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -98954,7 +98954,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -98991,7 +98991,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99022,7 +99022,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99045,7 +99045,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99076,7 +99076,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99113,7 +99113,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99144,7 +99144,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99173,7 +99173,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99202,7 +99202,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99239,7 +99239,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99276,7 +99276,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99299,7 +99299,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99330,7 +99330,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99367,7 +99367,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99404,7 +99404,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99435,7 +99435,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99466,7 +99466,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99501,7 +99501,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99532,7 +99532,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99575,7 +99575,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99604,7 +99604,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99633,7 +99633,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{14E8FE40-1072-5691-9F23-E3600A9C4614}", "entry": { "name": "In", @@ -99666,7 +99666,7 @@ ] }, { - "key": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", + "base": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "context": "OnDemandReflected", "variant": "", "details": { @@ -99676,7 +99676,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99707,7 +99707,7 @@ ] }, { - "key": "GetKeys", + "base": "GetKeys", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99738,7 +99738,7 @@ ] }, { - "key": "contains", + "base": "contains", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99775,7 +99775,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99812,7 +99812,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99843,7 +99843,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99872,7 +99872,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99903,7 +99903,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99940,7 +99940,7 @@ ] }, { - "key": "Erase", + "base": "Erase", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -99977,7 +99977,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -100008,7 +100008,7 @@ ] }, { - "key": "BucketCount", + "base": "BucketCount", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -100039,7 +100039,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -100070,7 +100070,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{DB1EB3E5-F953-53A7-B8F9-9121E6A77F85}", "entry": { "name": "In", @@ -100101,7 +100101,7 @@ ] }, { - "key": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", + "base": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "context": "OnDemandReflected", "variant": "", "details": { @@ -100111,7 +100111,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100142,7 +100142,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100173,7 +100173,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100210,7 +100210,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100239,7 +100239,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100276,7 +100276,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100307,7 +100307,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100330,7 +100330,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100361,7 +100361,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100398,7 +100398,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100429,7 +100429,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100458,7 +100458,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100487,7 +100487,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100524,7 +100524,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100561,7 +100561,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100584,7 +100584,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100615,7 +100615,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100652,7 +100652,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100689,7 +100689,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100720,7 +100720,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100751,7 +100751,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100786,7 +100786,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100817,7 +100817,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100860,7 +100860,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100889,7 +100889,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100918,7 +100918,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{8E8D109E-EB62-5F13-8C2C-1D857EEE4FB4}", "entry": { "name": "In", @@ -100951,7 +100951,7 @@ ] }, { - "key": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", + "base": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "context": "OnDemandReflected", "variant": "", "details": { @@ -100961,7 +100961,7 @@ }, "methods": [ { - "key": "Size", + "base": "Size", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -100992,7 +100992,7 @@ ] }, { - "key": "Front", + "base": "Front", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101023,7 +101023,7 @@ ] }, { - "key": "HasKey", + "base": "HasKey", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101060,7 +101060,7 @@ ] }, { - "key": "Resize", + "base": "Resize", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101089,7 +101089,7 @@ ] }, { - "key": "at", + "base": "at", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101126,7 +101126,7 @@ ] }, { - "key": "Back", + "base": "Back", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101157,7 +101157,7 @@ ] }, { - "key": "pop_back", + "base": "pop_back", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101180,7 +101180,7 @@ ] }, { - "key": "size", + "base": "size", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101211,7 +101211,7 @@ ] }, { - "key": "At", + "base": "At", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101248,7 +101248,7 @@ ] }, { - "key": "Empty", + "base": "Empty", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101279,7 +101279,7 @@ ] }, { - "key": "Swap", + "base": "Swap", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101308,7 +101308,7 @@ ] }, { - "key": "push_back", + "base": "push_back", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101337,7 +101337,7 @@ ] }, { - "key": "PushBack_VM", + "base": "PushBack_VM", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101374,7 +101374,7 @@ ] }, { - "key": "AtUnchecked", + "base": "AtUnchecked", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101411,7 +101411,7 @@ ] }, { - "key": "clear", + "base": "clear", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101434,7 +101434,7 @@ ] }, { - "key": "NotEmpty", + "base": "NotEmpty", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101465,7 +101465,7 @@ ] }, { - "key": "Erase_VM", + "base": "Erase_VM", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101502,7 +101502,7 @@ ] }, { - "key": "EraseCheck_VM", + "base": "EraseCheck_VM", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101539,7 +101539,7 @@ ] }, { - "key": "Capacity", + "base": "Capacity", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101570,7 +101570,7 @@ ] }, { - "key": "Clear", + "base": "Clear", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101601,7 +101601,7 @@ ] }, { - "key": "AssignAt", + "base": "AssignAt", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101636,7 +101636,7 @@ ] }, { - "key": "GetSize", + "base": "GetSize", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101667,7 +101667,7 @@ ] }, { - "key": "Insert", + "base": "Insert", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101710,7 +101710,7 @@ ] }, { - "key": "PushBack", + "base": "PushBack", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101739,7 +101739,7 @@ ] }, { - "key": "Reserve", + "base": "Reserve", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", @@ -101768,7 +101768,7 @@ ] }, { - "key": "Iterate_VM", + "base": "Iterate_VM", "context": "{3A9E52F9-1A46-5FC6-822A-249BBFB50C90}", "entry": { "name": "In", diff --git a/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp b/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp index ec6e7d8f4c..77f791483b 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp @@ -1078,9 +1078,11 @@ namespace ScriptCanvasEditor return CanCreateConnectionBetween(scSourceEndpoint, scTargetEndpoint).IsSuccess(); } - AZStd::string Graph::GetDataTypeString(const AZ::Uuid& typeId) + AZStd::string Graph::GetDataTypeString(const AZ::Uuid&) { - return TranslationHelper::GetSafeTypeName(ScriptCanvas::Data::FromAZType(typeId)); + // This is used by the default tooltip setting in GraphCanvas, returning an empty string + // in order for tooltips to be fully controlled by ScriptCanvas + return {}; } void Graph::OnRemoveUnusedNodes() diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp index cba39afe81..26caa5fc2f 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp @@ -335,7 +335,7 @@ namespace ScriptCanvasEditor::Nodes AZStd::string updatedMethodName = methodName; if (isAccessor) { - if (methodNode->GetMethodType() == ScriptCanvas::MethodType::Getter) + if (methodNode->GetMethodType() == ScriptCanvas::MethodType::Getter || methodNode->GetMethodType() == ScriptCanvas::MethodType::Free) { updatedMethodName = "Get"; } @@ -351,7 +351,7 @@ namespace ScriptCanvasEditor::Nodes if (methodDetails.m_subtitle.empty()) { - methodDetails.m_subtitle = details.m_name; + methodDetails.m_subtitle = details.m_category; } // Add to the tooltip the C++ class for reference diff --git a/Gems/ScriptCanvas/Code/Editor/Translation/TranslationHelper.h b/Gems/ScriptCanvas/Code/Editor/Translation/TranslationHelper.h index 189b665647..bd37ab0e2f 100644 --- a/Gems/ScriptCanvas/Code/Editor/Translation/TranslationHelper.h +++ b/Gems/ScriptCanvas/Code/Editor/Translation/TranslationHelper.h @@ -14,7 +14,6 @@ #include #include -#include #include #include #include diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.cpp index 0b2b4f3bcc..a31444921b 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.cpp @@ -16,7 +16,6 @@ #include #include -#include #include #include @@ -200,7 +199,7 @@ namespace ScriptCanvasEditor AZ::TypeId DataTypePaletteModel::FindTypeIdForIndex(const QModelIndex& index) const { - AZ::TypeId retVal; + AZ::TypeId retVal = AZ::TypeId::CreateNull(); if (index.row() >= 0 && index.row() < m_variableTypes.size()) { diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.cpp index 9b97d707d0..7ea4af9032 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.cpp @@ -877,17 +877,14 @@ namespace ScriptCanvasEditor { QModelIndexList indexList = GetTreeView()->selectionModel()->selectedRows(); - if (indexList.size() == 1) + QSortFilterProxyModel* filterModel = static_cast(GetTreeView()->model()); + + for (const QModelIndex& index : indexList) { - QSortFilterProxyModel* filterModel = static_cast(GetTreeView()->model()); + QModelIndex sourceIndex = filterModel->mapToSource(index); - for (const QModelIndex& index : indexList) - { - QModelIndex sourceIndex = filterModel->mapToSource(index); - - GraphCanvas::NodePaletteTreeItem* nodePaletteItem = static_cast(sourceIndex.internalPointer()); - nodePaletteItem->GenerateTranslationData(); - } + GraphCanvas::NodePaletteTreeItem* nodePaletteItem = static_cast(sourceIndex.internalPointer()); + nodePaletteItem->GenerateTranslationData(); } } diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.cpp index 00ce022cb5..2e9c5d1852 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.cpp @@ -19,7 +19,6 @@ #include -#include #include #include diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.cpp index 56b0cb3e55..6fdf154d69 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.cpp @@ -18,7 +18,6 @@ #include -#include #include #include diff --git a/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp b/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp index c0a0f41e95..4fcc904752 100644 --- a/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp +++ b/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp @@ -33,6 +33,7 @@ #include #include +#include namespace ScriptCanvasEditorTools { @@ -278,21 +279,33 @@ namespace ScriptCanvasEditorTools // Arguments (Input Slots) if (behaviorMethod->GetNumArguments() > 0) { - for (size_t argIndex = 0; argIndex < behaviorMethod->GetNumArguments(); ++argIndex) + size_t startIndex = behaviorMethod->HasResult() ? 1 : 0; + for (size_t argIndex = startIndex; argIndex < behaviorMethod->GetNumArguments(); ++argIndex) { const AZ::BehaviorParameter* parameter = behaviorMethod->GetArgument(argIndex); Argument argument; AZStd::string argumentKey = parameter->m_typeId.ToString(); - AZStd::string argumentName = parameter->m_name; - AZStd::string argumentDescription = ""; + AZStd::string argumentName; + AZStd::string argumentDescription; Helpers::GetTypeNameAndDescription(parameter->m_typeId, argumentName, argumentDescription); + const AZStd::string* argName = behaviorMethod->GetArgumentName(argIndex); + if (argName && !(*argName).empty()) + { + argumentName = *argName; + } + + const AZStd::string* argDesc = behaviorMethod->GetArgumentToolTip(argIndex); + if (argDesc && !(*argDesc).empty()) + { + argumentDescription = *argDesc; + } + argument.m_typeId = argumentKey; - argument.m_details.m_name = parameter->m_name; - argument.m_details.m_category = ""; + argument.m_details.m_name = argumentName; argument.m_details.m_tooltip = argumentDescription; SplitCamelCase(argument.m_details.m_name); @@ -836,8 +849,9 @@ namespace ScriptCanvasEditorTools Helpers::GetTypeNameAndDescription(parameter->m_typeId, argumentName, argumentDescription); + const AZStd::string* argName = behaviorMethod->GetArgumentName(argIndex); argument.m_typeId = argumentKey; - argument.m_details.m_name = parameter->m_name; + argument.m_details.m_name = argName ? *argName : argumentName; argument.m_details.m_category = ""; argument.m_details.m_tooltip = argumentDescription; @@ -859,8 +873,9 @@ namespace ScriptCanvasEditorTools Helpers::GetTypeNameAndDescription(resultParameter->m_typeId, resultName, resultDescription); + const AZStd::string* resName = behaviorMethod->GetArgumentName(0); result.m_typeId = resultKey; - result.m_details.m_name = resultParameter->m_name; + result.m_details.m_name = resName ? *resName : resultName; result.m_details.m_tooltip = resultDescription; SplitCamelCase(result.m_details.m_name); @@ -885,6 +900,9 @@ namespace ScriptCanvasEditorTools { entry->m_key = className; entry->m_context = context; + + entry->m_details.m_name = className; + SplitCamelCase(entry->m_details.m_name); } if (behaviorProperty->m_getter) @@ -1078,13 +1096,13 @@ namespace ScriptCanvasEditorTools rapidjson_ly::Value value(rapidjson_ly::kStringType); value.SetString(entrySource.m_key.c_str(), document.GetAllocator()); - entry.AddMember("key", value, document.GetAllocator()); + entry.AddMember(GraphCanvas::Schema::Field::key, value, document.GetAllocator()); value.SetString(entrySource.m_context.c_str(), document.GetAllocator()); - entry.AddMember("context", value, document.GetAllocator()); + entry.AddMember(GraphCanvas::Schema::Field::context, value, document.GetAllocator()); value.SetString(entrySource.m_variant.c_str(), document.GetAllocator()); - entry.AddMember("variant", value, document.GetAllocator()); + entry.AddMember(GraphCanvas::Schema::Field::variant, value, document.GetAllocator()); rapidjson_ly::Value details(rapidjson_ly::kObjectType); value.SetString(entrySource.m_details.m_name.c_str(), document.GetAllocator()); @@ -1105,12 +1123,12 @@ namespace ScriptCanvasEditorTools rapidjson_ly::Value theMethod(rapidjson_ly::kObjectType); value.SetString(methodSource.m_key.c_str(), document.GetAllocator()); - theMethod.AddMember("key", value, document.GetAllocator()); + theMethod.AddMember(GraphCanvas::Schema::Field::key, value, document.GetAllocator()); if (!methodSource.m_context.empty()) { value.SetString(methodSource.m_context.c_str(), document.GetAllocator()); - theMethod.AddMember("context", value, document.GetAllocator()); + theMethod.AddMember(GraphCanvas::Schema::Field::context, value, document.GetAllocator()); } if (!methodSource.m_entry.m_name.empty()) @@ -1218,7 +1236,7 @@ namespace ScriptCanvasEditorTools rapidjson_ly::Value theSlot(rapidjson_ly::kObjectType); value.SetString(slotSource.m_key.c_str(), document.GetAllocator()); - theSlot.AddMember("key", value, document.GetAllocator()); + theSlot.AddMember(GraphCanvas::Schema::Field::key, value, document.GetAllocator()); rapidjson_ly::Value sloDetails(rapidjson_ly::kObjectType); if (!slotSource.m_details.m_name.empty()) @@ -1298,6 +1316,7 @@ namespace ScriptCanvasEditorTools AZStd::regex splitRegex(R"(/[a-z]+|[0-9]+|(?:[A-Z][a-z]+)|(?:[A-Z]+(?=(?:[A-Z][a-z])|[^AZa-z]|[$\d\n]))/g)"); text = AZStd::regex_replace(text, splitRegex, " $&"); text = AZ::StringFunc::LStrip(text); + AZ::StringFunc::Replace(text, " ", " "); } namespace Helpers diff --git a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.ScriptCanvasNodeable.xml b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.ScriptCanvasNodeable.xml index 0be3c8c81a..a2a89509e6 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.ScriptCanvasNodeable.xml +++ b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.ScriptCanvasNodeable.xml @@ -1,13 +1,22 @@ + + + @@ -24,9 +33,10 @@ PreferredClassName="Branch Input Type Example" Base="ScriptCanvas::Nodeable" Icon="Icons/ScriptCanvas/Placeholder.png" - Category="Tests" + Category="Examples" GeneratePropertyFriend="True" Namespace="None" + EditAttributes="AZ::Script::Attributes::ExcludeFrom@AZ::Script::Attributes::ExcludeFlags::All" Description="Example of branch passing as input by value, pointer and reference."> @@ -46,9 +56,10 @@ PreferredClassName="Input Type Example" Base="ScriptCanvas::Nodeable" Icon="Icons/ScriptCanvas/Placeholder.png" - Category="Tests" + Category="Examples" GeneratePropertyFriend="True" Namespace="None" + EditAttributes="AZ::Script::Attributes::ExcludeFrom@AZ::Script::Attributes::ExcludeFlags::All" Description="Example of passing as input by value, pointer and reference."> @@ -65,9 +76,10 @@ PreferredClassName="Property Example" Base="ScriptCanvas::Nodeable" Icon="Icons/ScriptCanvas/Placeholder.png" - Category="Tests" + Category="Examples" GeneratePropertyFriend="True" Namespace="None" + EditAttributes="AZ::Script::Attributes::ExcludeFrom@AZ::Script::Attributes::ExcludeFlags::All" Description="Example of using properties."> diff --git a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.cpp b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.cpp index 0a0f71bead..c983717a0d 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.cpp @@ -26,9 +26,12 @@ namespace ScriptCanvasTesting if (AZ::BehaviorContext* behaviorContext = azrtti_cast(context)) { - behaviorContext->EnumProperty<(AZ::u32)TestEnum::Alpha>("ALPHA"); - behaviorContext->EnumProperty<(AZ::u32)TestEnum::Bravo>("BRAVO"); - behaviorContext->EnumProperty<(AZ::u32)TestEnum::Charlie>("CHARLIE"); + behaviorContext->EnumProperty<(AZ::u32)TestEnum::Alpha>("ALPHA") + ->Attribute(AZ::Script::Attributes::ExcludeFrom, AZ::Script::Attributes::ExcludeFlags::All); + behaviorContext->EnumProperty<(AZ::u32)TestEnum::Bravo>("BRAVO") + ->Attribute(AZ::Script::Attributes::ExcludeFrom, AZ::Script::Attributes::ExcludeFlags::All); + behaviorContext->EnumProperty<(AZ::u32)TestEnum::Charlie>("CHARLIE") + ->Attribute(AZ::Script::Attributes::ExcludeFrom, AZ::Script::Attributes::ExcludeFlags::All); } } diff --git a/Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.cpp b/Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.cpp index 7395e66d06..65e8600d62 100644 --- a/Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.cpp +++ b/Gems/Terrain/Code/Source/Components/TerrainSurfaceDataSystemComponent.cpp @@ -214,10 +214,10 @@ namespace Terrain { AZ_Assert((m_providerHandle != SurfaceData::InvalidSurfaceDataRegistryHandle), "Invalid surface data handle"); - // Our terrain was valid before and after, it just changed in some way. If we have a valid dirty region passed in - // then it's possible that the heightmap has been modified in the Editor. Otherwise, just notify that the entire - // terrain has changed in some way. - if (dirtyRegion.IsValid()) + // Our terrain was valid before and after, it just changed in some way. If we have a valid dirty region, and the terrain + // bounds themselves haven't changed, just notify that our terrain data has changed within the bounds. Otherwise, notify + // that the entire terrain provider needs to be updated, since it either has new bounds or the entire set of data is dirty. + if (dirtyRegion.IsValid() && m_terrainBounds.IsClose(terrainBoundsBeforeUpdate)) { SurfaceData::SurfaceDataSystemRequestBus::Broadcast( &SurfaceData::SurfaceDataSystemRequestBus::Events::RefreshSurfaceData, dirtyRegion); diff --git a/Gems/Terrain/Code/Tests/TerrainSystemTest.cpp b/Gems/Terrain/Code/Tests/TerrainSystemTest.cpp index 4d149e8527..c2f8c2620c 100644 --- a/Gems/Terrain/Code/Tests/TerrainSystemTest.cpp +++ b/Gems/Terrain/Code/Tests/TerrainSystemTest.cpp @@ -41,7 +41,6 @@ namespace UnitTest }; AZ::ComponentApplication m_app; - AZStd::unique_ptr m_terrainSystem; AZStd::unique_ptr> m_boxShapeRequests; AZStd::unique_ptr> m_shapeRequests; @@ -59,7 +58,6 @@ namespace UnitTest void TearDown() override { - m_terrainSystem.reset(); m_boxShapeRequests.reset(); m_shapeRequests.reset(); m_terrainAreaHeightRequests.reset(); @@ -96,16 +94,17 @@ namespace UnitTest // Create a terrain system with reasonable defaults for testing, but with the ability to override the defaults // on a test-by-test basis. - void CreateAndActivateTerrainSystem( + AZStd::unique_ptr CreateAndActivateTerrainSystem( AZ::Vector2 queryResolution = AZ::Vector2(1.0f), AZ::Aabb worldBounds = AZ::Aabb::CreateFromMinMax(AZ::Vector3(-128.0f), AZ::Vector3(128.0f))) { // Create the terrain system and give it one tick to fully initialize itself. - m_terrainSystem = AZStd::make_unique(); - m_terrainSystem->SetTerrainAabb(worldBounds); - m_terrainSystem->SetTerrainHeightQueryResolution(queryResolution); - m_terrainSystem->Activate(); + auto terrainSystem = AZStd::make_unique(); + terrainSystem->SetTerrainAabb(worldBounds); + terrainSystem->SetTerrainHeightQueryResolution(queryResolution); + terrainSystem->Activate(); AZ::TickBus::Broadcast(&AZ::TickBus::Events::OnTick, 0.f, AZ::ScriptTimePoint{}); + return terrainSystem; } AZStd::unique_ptr CreateAndActivateMockTerrainLayerSpawner( @@ -144,16 +143,16 @@ namespace UnitTest { // Trivially verify that the terrain system can successfully be constructed and destructed without errors. - m_terrainSystem = AZStd::make_unique(); + auto terrainSystem = AZStd::make_unique(); } TEST_F(TerrainSystemTest, TrivialActivateDeactivate) { // Verify that the terrain system can be activated and deactivated without errors. - m_terrainSystem = AZStd::make_unique(); - m_terrainSystem->Activate(); - m_terrainSystem->Deactivate(); + auto terrainSystem = AZStd::make_unique(); + terrainSystem->Activate(); + terrainSystem->Deactivate(); } TEST_F(TerrainSystemTest, CreateEventsCalledOnActivation) @@ -164,8 +163,8 @@ namespace UnitTest EXPECT_CALL(mockTerrainListener, OnTerrainDataCreateBegin()).Times(AtLeast(1)); EXPECT_CALL(mockTerrainListener, OnTerrainDataCreateEnd()).Times(AtLeast(1)); - m_terrainSystem = AZStd::make_unique(); - m_terrainSystem->Activate(); + auto terrainSystem = AZStd::make_unique(); + terrainSystem->Activate(); } TEST_F(TerrainSystemTest, DestroyEventsCalledOnDeactivation) @@ -176,9 +175,9 @@ namespace UnitTest EXPECT_CALL(mockTerrainListener, OnTerrainDataDestroyBegin()).Times(AtLeast(1)); EXPECT_CALL(mockTerrainListener, OnTerrainDataDestroyEnd()).Times(AtLeast(1)); - m_terrainSystem = AZStd::make_unique(); - m_terrainSystem->Activate(); - m_terrainSystem->Deactivate(); + auto terrainSystem = AZStd::make_unique(); + terrainSystem->Activate(); + terrainSystem->Deactivate(); } TEST_F(TerrainSystemTest, TerrainDoesNotExistWhenNoTerrainLayerSpawnersAreRegistered) @@ -190,9 +189,9 @@ namespace UnitTest // a normal facing up the Z axis. // Create and activate the terrain system with our testing defaults for world bounds and query resolution. - CreateAndActivateTerrainSystem(); + auto terrainSystem = CreateAndActivateTerrainSystem(); - AZ::Aabb worldBounds = m_terrainSystem->GetTerrainAabb(); + AZ::Aabb worldBounds = terrainSystem->GetTerrainAabb(); // Loop through several points within the world bounds, including on the edges, and verify that they all return false for // terrainExists with default heights and normals. @@ -203,17 +202,17 @@ namespace UnitTest AZ::Vector3 position(x, y, 0.0f); bool terrainExists = true; float height = - m_terrainSystem->GetHeight(position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &terrainExists); + terrainSystem->GetHeight(position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &terrainExists); EXPECT_FALSE(terrainExists); EXPECT_FLOAT_EQ(height, worldBounds.GetMin().GetZ()); terrainExists = true; AZ::Vector3 normal = - m_terrainSystem->GetNormal(position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &terrainExists); + terrainSystem->GetNormal(position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &terrainExists); EXPECT_FALSE(terrainExists); EXPECT_EQ(normal, AZ::Vector3::CreateAxisZ()); - bool isHole = m_terrainSystem->GetIsHoleFromFloats( + bool isHole = terrainSystem->GetIsHoleFromFloats( position.GetX(), position.GetY(), AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT); EXPECT_TRUE(isHole); } @@ -242,7 +241,7 @@ namespace UnitTest // Verify that terrain exists within the layer spawner bounds, and doesn't exist outside of it. // Create and activate the terrain system with our testing defaults for world bounds and query resolution. - CreateAndActivateTerrainSystem(); + auto terrainSystem = CreateAndActivateTerrainSystem(); // Create a box that's twice as big as the layer spawner box. Loop through it and verify that points within the layer box contain // terrain and the expected height & normal values, and points outside the layer box don't contain terrain. @@ -255,9 +254,9 @@ namespace UnitTest { AZ::Vector3 position(x, y, 0.0f); bool heightQueryTerrainExists = false; - float height = m_terrainSystem->GetHeight( + float height = terrainSystem->GetHeight( position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &heightQueryTerrainExists); - bool isHole = m_terrainSystem->GetIsHoleFromFloats( + bool isHole = terrainSystem->GetIsHoleFromFloats( position.GetX(), position.GetY(), AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT); if (spawnerBox.Contains(AZ::Vector3(position.GetX(), position.GetY(), spawnerBox.GetMin().GetZ()))) @@ -297,7 +296,7 @@ namespace UnitTest // Create and activate the terrain system with our testing defaults for world bounds, and a query resolution that exactly matches // the frequency of our sine wave. If our height queries rely on the query resolution, we should always get a value of 0. const AZ::Vector2 queryResolution(frequencyMeters); - CreateAndActivateTerrainSystem(queryResolution); + auto terrainSystem = CreateAndActivateTerrainSystem(queryResolution); // Test an arbitrary set of points that should all produce non-zero heights with the EXACT sampler. They're not aligned with the // query resolution, or with the 0 points on the sine wave. @@ -307,7 +306,7 @@ namespace UnitTest AZ::Vector3 position(nonZeroPoint.GetX(), nonZeroPoint.GetY(), 0.0f); bool heightQueryTerrainExists = false; float height = - m_terrainSystem->GetHeight(position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &heightQueryTerrainExists); + terrainSystem->GetHeight(position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &heightQueryTerrainExists); // We've chosen a bunch of places on the sine wave that should return a non-zero positive or negative value. constexpr float epsilon = 0.0001f; @@ -322,7 +321,7 @@ namespace UnitTest AZ::Vector3 position(zeroPoint.GetX(), zeroPoint.GetY(), 0.0f); bool heightQueryTerrainExists = false; float height = - m_terrainSystem->GetHeight(position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &heightQueryTerrainExists); + terrainSystem->GetHeight(position, AzFramework::Terrain::TerrainDataRequests::Sampler::EXACT, &heightQueryTerrainExists); constexpr float epsilon = 0.0001f; EXPECT_NEAR(height, 0.0f, epsilon); @@ -348,7 +347,7 @@ namespace UnitTest // Create and activate the terrain system with our testing defaults for world bounds, and a query resolution at 0.25 meter // intervals. const AZ::Vector2 queryResolution(0.25f); - CreateAndActivateTerrainSystem(queryResolution); + auto terrainSystem = CreateAndActivateTerrainSystem(queryResolution); // Test some points and verify that the results always go "downward", whether they're in positive or negative space. // (Z contains the the expected result for convenience). @@ -371,7 +370,7 @@ namespace UnitTest AZ::Vector3 position(testPoint.m_testLocation.GetX(), testPoint.m_testLocation.GetY(), 0.0f); bool heightQueryTerrainExists = false; float height = - m_terrainSystem->GetHeight(position, AzFramework::Terrain::TerrainDataRequests::Sampler::CLAMP, &heightQueryTerrainExists); + terrainSystem->GetHeight(position, AzFramework::Terrain::TerrainDataRequests::Sampler::CLAMP, &heightQueryTerrainExists); constexpr float epsilon = 0.0001f; EXPECT_NEAR(height, expectedHeight, epsilon); @@ -410,7 +409,7 @@ namespace UnitTest // Create and activate the terrain system with our testing defaults for world bounds, and a query resolution at 1 meter intervals. const AZ::Vector2 queryResolution(frequencyMeters); - CreateAndActivateTerrainSystem(queryResolution); + auto terrainSystem = CreateAndActivateTerrainSystem(queryResolution); // Test some points and verify that the results are the expected bilinear filtered result, // whether they're in positive or negative space. @@ -466,7 +465,7 @@ namespace UnitTest AZ::Vector3 position(testPoint.m_testLocation.GetX(), testPoint.m_testLocation.GetY(), 0.0f); bool heightQueryTerrainExists = false; - float height = m_terrainSystem->GetHeight( + float height = terrainSystem->GetHeight( position, AzFramework::Terrain::TerrainDataRequests::Sampler::BILINEAR, &heightQueryTerrainExists); // Verify that our height query returned the bilinear filtered result we expect. @@ -479,7 +478,7 @@ namespace UnitTest { // When there is more than one surface/weight defined, they should all be returned in descending weight order. - CreateAndActivateTerrainSystem(); + auto terrainSystem = CreateAndActivateTerrainSystem(); const AZ::Aabb aabb = AZ::Aabb::CreateFromMinMax(AZ::Vector3::CreateZero(), AZ::Vector3::CreateOne()); auto entity = CreateAndActivateMockTerrainLayerSpawner( @@ -508,11 +507,11 @@ namespace UnitTest AzFramework::SurfaceData::SurfaceTagWeightList outSurfaceWeights; // Asking for values outside the layer spawner bounds, should result in no results. - m_terrainSystem->GetSurfaceWeights(aabb.GetMax() + AZ::Vector3::CreateOne(), outSurfaceWeights); + terrainSystem->GetSurfaceWeights(aabb.GetMax() + AZ::Vector3::CreateOne(), outSurfaceWeights); EXPECT_TRUE(outSurfaceWeights.empty()); // Inside the layer spawner box should give us all of the added surface weights. - m_terrainSystem->GetSurfaceWeights(aabb.GetCenter(), outSurfaceWeights); + terrainSystem->GetSurfaceWeights(aabb.GetCenter(), outSurfaceWeights); EXPECT_EQ(outSurfaceWeights.size(), 3); @@ -531,7 +530,7 @@ namespace UnitTest TEST_F(TerrainSystemTest, GetMaxSurfaceWeightsReturnsBiggestValidSurfaceWeight) { - CreateAndActivateTerrainSystem(); + auto terrainSystem = CreateAndActivateTerrainSystem(); const AZ::Aabb aabb = AZ::Aabb::CreateFromMinMax(AZ::Vector3::CreateZero(), AZ::Vector3::CreateOne()); auto entity = CreateAndActivateMockTerrainLayerSpawner( @@ -562,12 +561,12 @@ namespace UnitTest // Asking for values outside the layer spawner bounds, should result in an invalid result. AzFramework::SurfaceData::SurfaceTagWeight tagWeight = - m_terrainSystem->GetMaxSurfaceWeight(aabb.GetMax() + AZ::Vector3::CreateOne()); + terrainSystem->GetMaxSurfaceWeight(aabb.GetMax() + AZ::Vector3::CreateOne()); EXPECT_EQ(tagWeight.m_surfaceType, AZ::Crc32(AzFramework::SurfaceData::Constants::s_unassignedTagName)); // Inside the layer spawner box should give us the highest weighted tag (tag1). - tagWeight = m_terrainSystem->GetMaxSurfaceWeight(aabb.GetCenter()); + tagWeight = terrainSystem->GetMaxSurfaceWeight(aabb.GetCenter()); EXPECT_EQ(tagWeight.m_surfaceType, tagWeight1.m_surfaceType); EXPECT_NEAR(tagWeight.m_weight, tagWeight1.m_weight, 0.01f); diff --git a/README.md b/README.md index 6f500a3dd3..11fec028bc 100644 --- a/README.md +++ b/README.md @@ -102,12 +102,12 @@ For more details on the steps above, refer to [Setting up O3DE from GitHub](http 1. Configure a solution for your project. ``` - cmake -B -S -G "Visual Studio 16" -DLY_3RDPARTY_PATH=<3rdParty cache path> + cmake -B -S -G "Visual Studio 16" ``` Example: ``` - cmake -B C:\my-project\build\windows_vs2019 -S C:\my-project -G "Visual Studio 16" -DLY_3RDPARTY_PATH=C:\o3de-packages + cmake -B C:\my-project\build\windows_vs2019 -S C:\my-project -G "Visual Studio 16" ``` > Note: Do not use trailing slashes for the <3rdParty cache path>. diff --git a/Registry/AssetProcessorPlatformConfig.setreg b/Registry/AssetProcessorPlatformConfig.setreg index c8d8dd9a80..cf793a9802 100644 --- a/Registry/AssetProcessorPlatformConfig.setreg +++ b/Registry/AssetProcessorPlatformConfig.setreg @@ -21,6 +21,19 @@ "Amazon": { "AssetProcessor": { "Settings": { + "Stats": { + // Setting MachineReadable to true will output stats in more of a CSV-like format that is ideal for script ingestion + "MachineReadable" : false, + // Setting HumanReadable to true will output stats in a friendly human format that is ideal for human reading + "HumanReadable" : true, + // To turn off stats output entirely, set both HumanReadable and MachineReadable to false. + // the maximum number of stats to show for cumulative stats like the time taken + // across all jobs of a certain type, or all jobs cumulative across a whole platform + "MaxCumulativeStats" : 4, + // the maximum number of stats to show for individual stats like how long a specific + // individual job took. + "MaxIndividualStats" : 4 + }, "Platform pc": { "tags": "tools,renderer,dx12,vulkan,null" }, diff --git a/Tools/LyTestTools/ly_test_tools/o3de/editor_test.py b/Tools/LyTestTools/ly_test_tools/o3de/editor_test.py index ae6ed16321..29b6573f7a 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/editor_test.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/editor_test.py @@ -303,6 +303,8 @@ class EditorTestSuite(): use_null_renderer = True # Maximum time for a single editor to stay open on a shared test timeout_editor_shared_test = 300 + # Flag to determine whether to use new prefab system or use deprecated slice system for this test suite + enable_prefab_system = True # Function to calculate number of editors to run in parallel, this can be overriden by the user @staticmethod @@ -741,7 +743,11 @@ class EditorTestSuite(): test_cmdline_args += ["--attach-debugger"] if test_spec.wait_for_debugger: test_cmdline_args += ["--wait-for-debugger"] - + if self.enable_prefab_system: + test_cmdline_args += ["--regset=/Amazon/Preferences/EnablePrefabSystem=true"] + else: + test_cmdline_args += ["--regset=/Amazon/Preferences/EnablePrefabSystem=false"] + # Cycle any old crash report in case it wasn't cycled properly editor_utils.cycle_crash_report(run_id, workspace) @@ -804,7 +810,11 @@ class EditorTestSuite(): test_cmdline_args += ["--attach-debugger"] if any([t.wait_for_debugger for t in test_spec_list]): test_cmdline_args += ["--wait-for-debugger"] - + if self.enable_prefab_system: + test_cmdline_args += ["--regset=/Amazon/Preferences/EnablePrefabSystem=true"] + else: + test_cmdline_args += ["--regset=/Amazon/Preferences/EnablePrefabSystem=false"] + # Cycle any old crash report in case it wasn't cycled properly editor_utils.cycle_crash_report(run_id, workspace) diff --git a/cmake/3rdParty.cmake b/cmake/3rdParty.cmake index 4b7f929279..7d98c3ea3e 100644 --- a/cmake/3rdParty.cmake +++ b/cmake/3rdParty.cmake @@ -25,6 +25,15 @@ define_property(TARGET PROPERTY LY_SYSTEM_LIBRARY # \arg:output_third_party_path name of variable to set the default project directory into # It defaults to the ~/.o3de/3rdParty directory function(get_default_third_party_folder output_third_party_path) + + # 1. Highest priority, cache variable, that will override the value of any of the cases below + # 2. if defined in an env variable, take it from there + if($ENV{LY_3RDPARTY_PATH}) + set(${output_third_party_path} $ENV{LY_3RDPARTY_PATH} PARENT_SCOPE) + return() + endif() + + # 3. If defined in the o3de_manifest.json, take it from there cmake_path(SET home_directory "$ENV{USERPROFILE}") # Windows if(NOT EXISTS ${home_directory}) cmake_path(SET home_directory "$ENV{HOME}") # Unix @@ -33,7 +42,20 @@ function(get_default_third_party_folder output_third_party_path) endif() endif() + set(manifest_path ${home_directory}/.o3de/o3de_manifest.json) + if(EXISTS ${manifest_path}) + file(READ ${manifest_path} manifest_json) + string(JSON default_third_party_folder ERROR_VARIABLE json_error GET ${manifest_json} default_third_party_folder) + if(NOT json_error) + set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${manifest_path}) + set(${output_third_party_path} ${default_third_party_folder} PARENT_SCOPE) + return() + endif() + endif() + + # 4. Lowest priority, use the home directory as the location for 3rdparty set(${output_third_party_path} ${home_directory}/.o3de/3rdParty PARENT_SCOPE) + endfunction() get_default_third_party_folder(o3de_default_third_party_path) diff --git a/cmake/Platform/Android/Toolchain_android.cmake b/cmake/Platform/Android/Toolchain_android.cmake index aff5c6faf8..b5c4a56fd6 100644 --- a/cmake/Platform/Android/Toolchain_android.cmake +++ b/cmake/Platform/Android/Toolchain_android.cmake @@ -11,10 +11,14 @@ if(LY_TOOLCHAIN_NDK_API_LEVEL) endif() # Verify that the NDK environment is set and points to the support NDK - +if(NOT ${LY_NDK_DIR}) + if($ENV{LY_NDK_DIR}) + set(LY_NDK_DIR $ENV{LY_NDK_DIR}) + endif() +endif() file(TO_CMAKE_PATH "${LY_NDK_DIR}" LY_NDK_DIR) if(NOT LY_NDK_DIR) - message(FATAL_ERROR "Environment var for NDK is empty. Could not find the NDK installation folder") + message(FATAL_ERROR "Environment and cache var for NDK is empty. Could not find the NDK installation folder") endif() set(LY_ANDROID_NDK_TOOLCHAIN ${LY_NDK_DIR}/build/cmake/android.toolchain.cmake) diff --git a/scripts/build/Jenkins/Jenkinsfile b/scripts/build/Jenkins/Jenkinsfile index 3b5ca8fe60..98011503af 100644 --- a/scripts/build/Jenkins/Jenkinsfile +++ b/scripts/build/Jenkins/Jenkinsfile @@ -451,10 +451,12 @@ def ArchiveArtifactsOnS3(String artifactsSource, String s3Prefix="", boolean rec } def UploadAPLogs(String platformName, String jobName, String workspace, Map params) { - dir("${workspace}/${ENGINE_REPOSITORY_NAME}") { - projects = params.CMAKE_LY_PROJECTS.split(",") - projects.each{ project -> - ArchiveArtifactsOnS3("${project}/user/log", "ap_logs/${platformName}/${jobName}/${project}", true) + catchError(message: "Error archiving AssetProcessor logs (this won't fail the build)", buildResult: 'UNSTABLE', stageResult: 'FAILURE') { + dir("${workspace}/${ENGINE_REPOSITORY_NAME}") { + projects = params.CMAKE_LY_PROJECTS.split(",") + projects.each{ project -> + ArchiveArtifactsOnS3("${project}/user/log", "ap_logs/${platformName}/${jobName}/${project}", true) + } } } } diff --git a/scripts/build/Platform/Android/build_config.json b/scripts/build/Platform/Android/build_config.json index 5e2da44a3c..dbdafcf97d 100644 --- a/scripts/build/Platform/Android/build_config.json +++ b/scripts/build/Platform/Android/build_config.json @@ -35,7 +35,7 @@ "PARAMETERS": { "CONFIGURATION":"debug", "OUTPUT_DIRECTORY":"build\\android", - "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_3RDPARTY_PATH!\\android-ndk\\r21d\"", + "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_NDK_DIR!\"", "CMAKE_LY_PROJECTS":"AutomatedTesting", "CMAKE_TARGET":"all", "CMAKE_BUILD_ARGS":"-j!NUMBER_OF_PROCESSORS!" @@ -60,7 +60,7 @@ "PARAMETERS": { "CONFIGURATION":"profile", "OUTPUT_DIRECTORY":"build\\android", - "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_3RDPARTY_PATH!\\android-ndk\\r21d\"", + "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_NDK_DIR!\"", "CMAKE_LY_PROJECTS":"AutomatedTesting", "CMAKE_TARGET":"all", "CMAKE_BUILD_ARGS":"-j!NUMBER_OF_PROCESSORS!" @@ -76,7 +76,7 @@ "PARAMETERS": { "CONFIGURATION":"profile", "OUTPUT_DIRECTORY":"build\\android", - "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_3RDPARTY_PATH!\\android-ndk\\r21d\" -DLY_UNITY_BUILD=FALSE", + "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_NDK_DIR!\" -DLY_UNITY_BUILD=FALSE", "CMAKE_LY_PROJECTS":"AutomatedTesting", "CMAKE_TARGET":"all", "CMAKE_BUILD_ARGS":"-j!NUMBER_OF_PROCESSORS!" @@ -112,7 +112,7 @@ "PARAMETERS": { "CONFIGURATION":"release", "OUTPUT_DIRECTORY":"build\\android", - "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_3RDPARTY_PATH!\\android-ndk\\r21d\"", + "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_NDK_DIR!\"", "CMAKE_LY_PROJECTS":"AutomatedTesting", "CMAKE_TARGET":"all", "CMAKE_BUILD_ARGS":"-j!NUMBER_OF_PROCESSORS!" @@ -128,7 +128,7 @@ "PARAMETERS": { "CONFIGURATION":"release", "OUTPUT_DIRECTORY":"build\\mono_android", - "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_3RDPARTY_PATH!\\android-ndk\\r21d\" -DLY_MONOLITHIC_GAME=TRUE", + "CMAKE_OPTIONS":"-G \"Ninja Multi-Config\" -DCMAKE_TOOLCHAIN_FILE=cmake\\Platform\\Android\\Toolchain_android.cmake -DANDROID_ABI=arm64-v8a -DANDROID_ARM_MODE=arm -DANDROID_ARM_NEON=FALSE -DANDROID_NATIVE_API_LEVEL=21 -DLY_NDK_DIR=\"!LY_NDK_DIR!\" -DLY_MONOLITHIC_GAME=TRUE", "CMAKE_LY_PROJECTS":"AutomatedTesting", "CMAKE_TARGET":"all", "CMAKE_BUILD_ARGS":"-j!NUMBER_OF_PROCESSORS!" diff --git a/scripts/build/Platform/Android/gradle_windows.cmd b/scripts/build/Platform/Android/gradle_windows.cmd index b353a8f641..bb98799444 100644 --- a/scripts/build/Platform/Android/gradle_windows.cmd +++ b/scripts/build/Platform/Android/gradle_windows.cmd @@ -23,23 +23,6 @@ IF NOT EXIST "%GRADLE_BUILD_HOME%" ( GOTO :error ) -IF NOT EXIST "%LY_NINJA_PATH%" ( - SET LY_NINJA_PATH=%LY_3RDPARTY_PATH%/ninja/1.10.1/Windows -) -IF NOT EXIST "%LY_NINJA_PATH%" ( - ECHO [ci_build] FAIL: LY_NINJA_PATH=%LY_NINJA_PATH% - GOTO :error -) - -REM Make sure that Ninja in the Path variable -ECHO Testing ninja on the current path variable -call ninja --version -IF %ERRORLEVEL%==0 GOTO ninja_on_path -ECHO Ninja wasnt in the call path, add the value set by LY_NINJA_PATH -SET PATH=%PATH%;%LY_NINJA_PATH% - -:ninja_on_path - IF NOT "%ANDROID_GRADLE_PLUGIN%" == "" ( set ANDROID_GRADLE_PLUGIN_OPTION=--gradle-plugin-version=%ANDROID_GRADLE_PLUGIN% ) @@ -132,11 +115,11 @@ IF "%GENERATE_SIGNED_APK%"=="true" ( ECHO Using keystore file at %CI_ANDROID_KEYSTORE_FILE_ABS% ) - ECHO [ci_build] %PYTHON% cmake\Tools\Platform\Android\generate_android_project.py --engine-root=. --build-dir=%OUTPUT_DIRECTORY% -g %GAME_PROJECT% --gradle-install-path=%GRADLE_BUILD_HOME% --ninja-install-path=%LY_NINJA_PATH% --third-party-path=%LY_3RDPARTY_PATH% --enable-unity-build --android-sdk-path=%ANDROID_HOME% %ANDROID_GRADLE_PLUGIN_OPTION% --signconfig-store-file %CI_ANDROID_KEYSTORE_FILE_ABS% --signconfig-store-password %CI_ANDROID_KEYSTORE_PASSWORD% --signconfig-key-alias %CI_ANDROID_KEYSTORE_ALIAS% --signconfig-key-password %CI_ANDROID_KEYSTORE_PASSWORD% %ADDITIONAL_GENERATE_ARGS% --overwrite-existing - CALL %PYTHON% cmake\Tools\Platform\Android\generate_android_project.py --engine-root=. --build-dir=%OUTPUT_DIRECTORY% -g %GAME_PROJECT% --gradle-install-path=%GRADLE_BUILD_HOME% --ninja-install-path=%LY_NINJA_PATH% --third-party-path=%LY_3RDPARTY_PATH% --enable-unity-build --android-sdk-path=%ANDROID_HOME% %ANDROID_GRADLE_PLUGIN_OPTION% --signconfig-store-file %CI_ANDROID_KEYSTORE_FILE_ABS% --signconfig-store-password %CI_ANDROID_KEYSTORE_PASSWORD% --signconfig-key-alias %CI_ANDROID_KEYSTORE_ALIAS% --signconfig-key-password %CI_ANDROID_KEYSTORE_PASSWORD% %ADDITIONAL_GENERATE_ARGS% --overwrite-existing + ECHO [ci_build] %PYTHON% cmake\Tools\Platform\Android\generate_android_project.py --engine-root=. --build-dir=%OUTPUT_DIRECTORY% -g %GAME_PROJECT% --gradle-install-path=%GRADLE_BUILD_HOME% --third-party-path=%LY_3RDPARTY_PATH% --enable-unity-build --android-sdk-path=%ANDROID_HOME% %ANDROID_GRADLE_PLUGIN_OPTION% --signconfig-store-file %CI_ANDROID_KEYSTORE_FILE_ABS% --signconfig-store-password %CI_ANDROID_KEYSTORE_PASSWORD% --signconfig-key-alias %CI_ANDROID_KEYSTORE_ALIAS% --signconfig-key-password %CI_ANDROID_KEYSTORE_PASSWORD% %ADDITIONAL_GENERATE_ARGS% --overwrite-existing + CALL %PYTHON% cmake\Tools\Platform\Android\generate_android_project.py --engine-root=. --build-dir=%OUTPUT_DIRECTORY% -g %GAME_PROJECT% --gradle-install-path=%GRADLE_BUILD_HOME% --third-party-path=%LY_3RDPARTY_PATH% --enable-unity-build --android-sdk-path=%ANDROID_HOME% %ANDROID_GRADLE_PLUGIN_OPTION% --signconfig-store-file %CI_ANDROID_KEYSTORE_FILE_ABS% --signconfig-store-password %CI_ANDROID_KEYSTORE_PASSWORD% --signconfig-key-alias %CI_ANDROID_KEYSTORE_ALIAS% --signconfig-key-password %CI_ANDROID_KEYSTORE_PASSWORD% %ADDITIONAL_GENERATE_ARGS% --overwrite-existing ) ELSE ( - ECHO [ci_build] %PYTHON% cmake\Tools\Platform\Android\generate_android_project.py --engine-root=. --build-dir=%OUTPUT_DIRECTORY% -g %GAME_PROJECT% %GRADLE_OVERRIDE_OPTION% --ninja-install-path=%LY_NINJA_PATH% --third-party-path=%LY_3RDPARTY_PATH% --enable-unity-build %ANDROID_GRADLE_PLUGIN_OPTION% --android-sdk-path=%ANDROID_HOME% %ADDITIONAL_GENERATE_ARGS% --overwrite-existing - CALL %PYTHON% cmake\Tools\Platform\Android\generate_android_project.py --engine-root=. --build-dir=%OUTPUT_DIRECTORY% -g %GAME_PROJECT% --gradle-install-path=%GRADLE_BUILD_HOME% --ninja-install-path=%LY_NINJA_PATH% --third-party-path=%LY_3RDPARTY_PATH% --enable-unity-build %ANDROID_GRADLE_PLUGIN_OPTION% --android-sdk-path=%ANDROID_HOME% %ADDITIONAL_GENERATE_ARGS% --overwrite-existing + ECHO [ci_build] %PYTHON% cmake\Tools\Platform\Android\generate_android_project.py --engine-root=. --build-dir=%OUTPUT_DIRECTORY% -g %GAME_PROJECT% %GRADLE_OVERRIDE_OPTION% --third-party-path=%LY_3RDPARTY_PATH% --enable-unity-build %ANDROID_GRADLE_PLUGIN_OPTION% --android-sdk-path=%ANDROID_HOME% %ADDITIONAL_GENERATE_ARGS% --overwrite-existing + CALL %PYTHON% cmake\Tools\Platform\Android\generate_android_project.py --engine-root=. --build-dir=%OUTPUT_DIRECTORY% -g %GAME_PROJECT% --gradle-install-path=%GRADLE_BUILD_HOME% --third-party-path=%LY_3RDPARTY_PATH% --enable-unity-build %ANDROID_GRADLE_PLUGIN_OPTION% --android-sdk-path=%ANDROID_HOME% %ADDITIONAL_GENERATE_ARGS% --overwrite-existing ) REM Validate the android project generation diff --git a/scripts/build/Platform/Android/pipeline.json b/scripts/build/Platform/Android/pipeline.json index 551374a027..230d5d3477 100644 --- a/scripts/build/Platform/Android/pipeline.json +++ b/scripts/build/Platform/Android/pipeline.json @@ -2,7 +2,8 @@ "ENV": { "GRADLE_HOME": "C:/Gradle/gradle-7.0", "NODE_LABEL": "windows-b3c8994f1", - "LY_3RDPARTY_PATH": "C:/ly/3rdParty", + "LY_3RDPARTY_PATH": "D:/workspace/3rdParty", + "LY_NDK_DIR": "C:/ly/3rdParty/android-ndk/r21d", "TIMEOUT": 30, "WORKSPACE": "D:/workspace", "MOUNT_VOLUME": true diff --git a/scripts/build/Platform/Linux/build_linux.sh b/scripts/build/Platform/Linux/build_linux.sh index c14d4b5073..328445738b 100755 --- a/scripts/build/Platform/Linux/build_linux.sh +++ b/scripts/build/Platform/Linux/build_linux.sh @@ -17,7 +17,7 @@ SOURCE_DIRECTORY=${PWD} pushd $OUTPUT_DIRECTORY LAST_CONFIGURE_CMD_FILE=ci_last_configure_cmd.txt -CONFIGURE_CMD="cmake ${SOURCE_DIRECTORY} ${CMAKE_OPTIONS} ${EXTRA_CMAKE_OPTIONS} -DLY_3RDPARTY_PATH=${LY_3RDPARTY_PATH}" +CONFIGURE_CMD="cmake ${SOURCE_DIRECTORY} ${CMAKE_OPTIONS} ${EXTRA_CMAKE_OPTIONS}" if [[ -n "$CMAKE_LY_PROJECTS" ]]; then CONFIGURE_CMD="${CONFIGURE_CMD} -DLY_PROJECTS='${CMAKE_LY_PROJECTS}'" fi diff --git a/scripts/build/Platform/Linux/pipeline.json b/scripts/build/Platform/Linux/pipeline.json index 7f16ec6ab5..f44ed5f9de 100644 --- a/scripts/build/Platform/Linux/pipeline.json +++ b/scripts/build/Platform/Linux/pipeline.json @@ -1,7 +1,7 @@ { "ENV": { "NODE_LABEL": "linux-707531fc7", - "LY_3RDPARTY_PATH": "/home/lybuilder/ly/workspace/3rdParty", + "LY_3RDPARTY_PATH": "/data/workspace/3rdParty", "TIMEOUT": 30, "WORKSPACE": "/data/workspace", "MOUNT_VOLUME": true diff --git a/scripts/build/Platform/Mac/build_mac.sh b/scripts/build/Platform/Mac/build_mac.sh index 169e91c24f..a0401f664c 100755 --- a/scripts/build/Platform/Mac/build_mac.sh +++ b/scripts/build/Platform/Mac/build_mac.sh @@ -17,7 +17,7 @@ SOURCE_DIRECTORY=${PWD} pushd $OUTPUT_DIRECTORY LAST_CONFIGURE_CMD_FILE=ci_last_configure_cmd.txt -CONFIGURE_CMD="cmake ${SOURCE_DIRECTORY} ${CMAKE_OPTIONS} ${EXTRA_CMAKE_OPTIONS} -DLY_3RDPARTY_PATH=${LY_3RDPARTY_PATH}" +CONFIGURE_CMD="cmake ${SOURCE_DIRECTORY} ${CMAKE_OPTIONS} ${EXTRA_CMAKE_OPTIONS}" if [[ -n "$CMAKE_LY_PROJECTS" ]]; then CONFIGURE_CMD="${CONFIGURE_CMD} -DLY_PROJECTS='${CMAKE_LY_PROJECTS}'" fi diff --git a/scripts/build/Platform/Windows/build_windows.cmd b/scripts/build/Platform/Windows/build_windows.cmd index 6c3ce91397..9e9b124adb 100644 --- a/scripts/build/Platform/Windows/build_windows.cmd +++ b/scripts/build/Platform/Windows/build_windows.cmd @@ -29,7 +29,7 @@ REM Compute half the amount of processors so some jobs can run SET /a HALF_PROCESSORS = NUMBER_OF_PROCESSORS / 2 SET LAST_CONFIGURE_CMD_FILE=ci_last_configure_cmd.txt -SET CONFIGURE_CMD=cmake %SOURCE_DIRECTORY% %CMAKE_OPTIONS% %EXTRA_CMAKE_OPTIONS% -DLY_3RDPARTY_PATH="%LY_3RDPARTY_PATH%" +SET CONFIGURE_CMD=cmake %SOURCE_DIRECTORY% %CMAKE_OPTIONS% %EXTRA_CMAKE_OPTIONS% IF NOT "%CMAKE_LY_PROJECTS%"=="" ( SET CONFIGURE_CMD=!CONFIGURE_CMD! -DLY_PROJECTS="%CMAKE_LY_PROJECTS%" ) diff --git a/scripts/build/Platform/Windows/pipeline.json b/scripts/build/Platform/Windows/pipeline.json index 6be55ec82d..b18a1e8c63 100644 --- a/scripts/build/Platform/Windows/pipeline.json +++ b/scripts/build/Platform/Windows/pipeline.json @@ -1,7 +1,7 @@ { "ENV": { "NODE_LABEL": "windows-b3c8994f1", - "LY_3RDPARTY_PATH": "C:/ly/3rdParty", + "LY_3RDPARTY_PATH": "D:/workspace/3rdParty", "TIMEOUT": 30, "WORKSPACE": "D:/workspace", "MOUNT_VOLUME": true diff --git a/scripts/build/Platform/iOS/build_ios_test.sh b/scripts/build/Platform/iOS/build_ios_test.sh index b683948e72..7869b900db 100755 --- a/scripts/build/Platform/iOS/build_ios_test.sh +++ b/scripts/build/Platform/iOS/build_ios_test.sh @@ -19,7 +19,7 @@ SOURCE_DIRECTORY=${PWD} ECHO Configuring for iOS Testing LAST_CONFIGURE_CMD_FILE=ci_last_configure_cmd.txt -CONFIGURE_CMD="cmake -B ${OUTPUT_DIRECTORY} ${SOURCE_DIRECTORY} ${CMAKE_OPTIONS} ${EXTRA_CMAKE_OPTIONS} -DLY_3RDPARTY_PATH=${LY_3RDPARTY_PATH}" +CONFIGURE_CMD="cmake -B ${OUTPUT_DIRECTORY} ${SOURCE_DIRECTORY} ${CMAKE_OPTIONS} ${EXTRA_CMAKE_OPTIONS}" if [[ ! -e "CMakeCache.txt" ]]; then echo [ci_build] First run, generating RUN_CONFIGURE=1 diff --git a/scripts/build/Platform/iOS/pipeline.json b/scripts/build/Platform/iOS/pipeline.json index e8cea0f06d..a5e2ff710e 100644 --- a/scripts/build/Platform/iOS/pipeline.json +++ b/scripts/build/Platform/iOS/pipeline.json @@ -1,7 +1,7 @@ { "ENV": { "NODE_LABEL": "mac-bigsur-2fc3a22", - "LY_3RDPARTY_PATH": "/Users/lybuilder/3rdParty", + "LY_3RDPARTY_PATH": "/Users/lybuilder/workspace/3rdParty", "TIMEOUT": 30, "WORKSPACE": "/Users/lybuilder/workspace", "MOUNT_VOLUME": false diff --git a/scripts/o3de/README.txt b/scripts/o3de/README.txt index 07d23fab82..ded52bb264 100644 --- a/scripts/o3de/README.txt +++ b/scripts/o3de/README.txt @@ -23,7 +23,7 @@ INSTALL It is recommended to set up these these tools with O3DE's CMake build commands. Assuming CMake is already setup on your operating system, below are some sample build commands: cd /path/to/od3e/ - cmake -B windows_vs2019 -S . -G"Visual Studio 16" -DLY_3RDPARTY_PATH="%LY_3RDPARTY_PATH%" + cmake -B windows_vs2019 -S . -G"Visual Studio 16" To manually install the project in development mode using your own installed Python interpreter: cd /path/to/od3e/o3de